why freind function takes more parameter than normal member
function in c++?
Answer / jeremiah
A friend function needs to know the object on which it must
operate. Class member functions have an implicit "this"
pointer which define the object on which it must operate.
Example:
---------------------------------------------------------
class Number;
// A function that adds two numbers.
// This function must be a friend of the Number class
// because it operates on a private member variable of the
// Number class.
Number Add( const Number& lhs, const Number& rhs )
{
Number result;
result = lhs.m_value + rhs.m_value;
return result;
}
// The Number class
class Number
{
public:
// Constructor - Default to 0.
explicit Number( int value = 0 )
: m_value( value )
{}
// Copy constructor
Number( const Number& copy )
: m_value( copy.m_value )
{}
// Add this number with another and return the result.
// This operator only needs 1 argument because the
// Left-hand side is assumed to be the class itself.
Number operator+( const Number& rhs ) const
{
Number result;
result.m_value = m_value + rhs.m_value;
return result;
}
private:
// Allow the Add function to access the private members
// of this class by making it a friend function.
friend Number Add( const Number&, const Number& );
int m_value;
};
-----------------------------------------------------------
As you can see from the example, the "Add" function takes
two arguments (a left-hand side operator, and a right-hand
side operator), whereas the Number::operator+ member
function only needs to know the right-hand side operator
because the left-hand side operator is assumed to be the
class instance itself.
| Is This Answer Correct ? | 4 Yes | 0 No |
Why is oop useful?
What is destructor in oop?
Write 7 differences between "Public" function and "Private" function?
How oops is better than procedural?
How do you define social class?
What is the fundamental idea of oop?
What does the code "cout<<(0==0);" print? 1) 0 2) 1 3) Compiler error: Lvalue required
What is Object and Class? What are the differences between them?
When you define a integer it gets stored in which data structure?(Stack or a heap)
Why many objects can working together? How objects working togetherM I want to see example code.
what is virtual function?
26 Answers Aspire, HP, Infosys, RoboSoft, TCS,
what is an qt4 interface?