Friendly function and rules of friend function, C/C++ Programming

Assignment Help:

Friendly Function:

A class can have public members and private members.   The public member can be

used through the class using dot operator.   Where as private member cannot be accessed outside the class.  In other word a private member can be accessed only by the members of its class.   In some situation it may be essential to share a function between or among classes in such case the member function is declared as friendly member function in the class.

Note: The  private  data  member can be used outside  the  class only  through  friend function with object class as argument.

Program to read private member from a member function:

class sample

{

 int a;

 

int b;

public:

void setdata( )

{a=10;

b=20;

}

friend int putdata(sample s);

};

int putdata(sample s)

{ return (s.a+s.b);

}

int main( )

{sample x;

x.setdata( );

cout<<"Sum is:"<

return 0;

}

Rules of friend function:

  • It defined without accessing the scope of the class.
  • It can work similar global function when the argument is not a class.
  • It cannot use the member directly private or public.
  • The private member can be changed or accessed only through its object argument.
  • It can be defined as inline function outside the class only not in prototype.
  • It can be a public or private function without any effect of its meaning.
  • It usually has class as its arguments only then it can be used among defined class arguments.

The member function of one class can be accessed as friend function of another class.  We can also make a class as friend of another class.  When class is defined as friend class all the member-functions from the friend class can be accessed.  Consider the given examples.

class X

{int fun( );

};

class Y

{friend int X::fun( ); //Member function fun in class X is friend function in class Y

};

class Z

{friend class X;  //All the members of X is a friend class in X

};

 

Program to share function between classes:

Note: Remember the private data member can be accessed outside the class only through friend function with object class as argument.

 

class ABC; //Forward declaration

class XYZ

{int x;

public:

void setvalue(int i)

{x=i;}

friend void max(XYZ,ABC); // friend void max(XYZ &,ABC &);

};

class ABC

{int a;

public:

void setvalue(int i)

{a=i;}

friend void max(XYZ,ABC); // friend void max(XYZ &,ABC &);

};

void max(XYZ m, ABC n) // void max(XYZ &m, ABC &n)

{if(m.x>n.a)

cout<

 

else

 

}

int main()

{clrscr();

 

 

cout<

 

ABC abc; XYZ xyz; abc.setvalue(100); xyz.setvalue(200); max(xyz,abc);

return 0;}

 

The above program depicts how a friend function is shared between classes, class must be declared in the beginning this is called forward declaration.  The above friend function can be called be reference, the advantage of call by reference is the objects are not created locally at the main program instead the pointer to the address of the object is passed.

The member function can be declared constant member function by using the following syntax in the declaration.

void  mult(int,int)  const;  The  two  argument  int  cannot  be  changed  in  the  function definition.  The keyword const must be used as shown above.


Related Discussions:- Friendly function and rules of friend function

LOOP, DIFFERENCE BETWEEN WHILE AND DO WHILE LOOP?

DIFFERENCE BETWEEN WHILE AND DO WHILE LOOP?

Board colouring, in this problem you are given a board in which some of the...

in this problem you are given a board in which some of the elements are placed..each element represent ancolor.fill the other elements in the board such that none of the adjacent e

Program to display stock containing item code, THIS PROGRAM IS TO DISPLAY A...

THIS PROGRAM IS TO DISPLAY A STOCK CONTAINING ITEM CODE,ITEM NAME,PRICE AND ANOTHER STOCK WITH CODE & QUANTITY AND DISPLAY COMPLETE INFORMATION #include #include #include

Using functions create a program, In rPeANUt implement the "char getchar()"...

In rPeANUt implement the "char getchar()" and "void printstring(char *str)" functions. Using these functions implement the following: void main() {    while (1) {       ch

Eevrv, Ask question #Mi fd d fffffffffffffffffffffffffffffffffffffffffff...

Ask question #Mi fd d fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff

C expressions - assume variables are double or float, Assume variables x, f...

Assume variables x, f, and d are of type int, float, and double, respectively.  Their values are arbitrary, except that neither f nor d equals +∞, -∞, or NaN .  For each of the fo

Result system, write a promgram using object oriented peramid

write a promgram using object oriented peramid

C program for even & odd no in any matrices , C Program for EVEN & ODD NO I...

C Program for EVEN & ODD NO IN ANY MATRICES #include stdio.h> #include conio.h> void main() {           int a[100][100];           int i=0,j=0,r,c,even=0,odd=0;

Bitwise operations, Bitwise Operations 1. Write a function that has an ...

Bitwise Operations 1. Write a function that has an int parameter n, makes an integer mask having the bit 1 at the nth place from the rightmost bit, and returns the mask. For ex

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd