What is friend function?
Answers were Sorted based on User's Feedback
Answer / p suresh kumar
It is a non-member function, but having access to class
members.
| Is This Answer Correct ? | 49 Yes | 5 No |
Answer / kumarasamy
it is nonmember function of class it can access the
private and protected members in the class, And it is
defined by a keyword frind.........
| Is This Answer Correct ? | 36 Yes | 4 No |
Answer / lakshmi.t
If a class B is derived from A, we can access the data and
member function of A.So in order to access a class data or
function from another class we have to derive the class.
but this can be done by declaring a class as 'friend' and
can access the another class functions and data.
| Is This Answer Correct ? | 26 Yes | 8 No |
Answer / karthi
it can access private and public member function
| Is This Answer Correct ? | 9 Yes | 4 No |
Answer / mital
A friend function is used in object-oriented programming to
allow access to private or protected data in a class from
outside the class. Normally a function which is not a
member of a class cannot access such information; neither
can an external class. Occasionally such access will be
advantageous for the programmer; under these circumstances,
the function or external class can be declared as a friend
of the class using the friend keyword. The function or
external class will then have access to all information –
public, private, or protected – within the class.
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / nitish
If you are not the actual member of the class and want the
access over the functions involved in the class, then it can
be done through friend function.
An easy access to the data is provided through friend functions.
| Is This Answer Correct ? | 7 Yes | 5 No |
Answer / aravinth.p
its is a non member function,which is used to access the
private data members of a class...
it is declared inside the class by the keyword : FRIEND
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vigneswari
FRIEND FUNCTION IS USED TO ACCESS THE DATAMEMBERS,MEMBER
FUNCTION DECLARED UNDER PRIVATE(access
specifier)...normaly we canot access the members under
private for the whole program.......BUT USING THIS
FRIENDFUNCTION WE CAN ACCESS THE FUNCTION UNDER
PRIVATE................BEST WISHES TO B A GUD
PROGRAMMER...ALL THE BEST
| Is This Answer Correct ? | 4 Yes | 4 No |
Answer / shahzad
friend function defined outside a class. friend function is
used (OBJ)to allow to assess to private ,public the class
from the outside'normally a function not a member if class
and not assess information
| Is This Answer Correct ? | 0 Yes | 0 No |
Can private class be inherited?
There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.
i=20;k=0; for(j=1;k-i;k+=j<10?4:3) { cout<<k; } //please comment on the output
How can i write a code in c# to take a number from the user and then find all the prime numbers till the number entered by the user.
design class for linked list and include constructor,destructor,insert option. struct node { int node; struct node &ptr; }
What is class and object with example?
What is conditional Compilation?
Get me an image implementation program.
#include <string.h> #include <stdio.h> #include <stdlib.h> #include <conio.h> void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort
Why do while loop is used?
What is the difference between C++ and java?
What is multidimensional array?