In C++, like other functions, assignment operator function is inherited in derived class.
For example, in the following program, base class assignment operator function can be accessed using the derived class object.
#include<iostream>
using namespace std;
class A {
public :
A & operator= (A &a) {
cout<< " base class assignment operator called " ;
return * this ;
}
};
class B: public A { };
int main()
{
B a, b;
a.A::operator=(b);
getchar ();
return 0;
}
|
Output: base class assignment operator called
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
29 Mar, 2022
Like Article
Save Article