What is the keyword for overloading an operator in C++? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 6

What is the keyword for overloading an operator in C++?

What is the keyword for overloading an operator in C++? Quis Module C++

3rd Feb 2021, 6:18 AM
HENDRA WIJAYA ANJAS HARIANJA
HENDRA WIJAYA ANJAS HARIANJA - avatar
4 Answers
+ 3
You can check out this. Hope it helps you. https://code.sololearn.com/c92zkI379EsO/?ref=app
3rd Feb 2021, 10:05 AM
Aysha
Aysha - avatar
+ 1
Syntax (example of + overloading): className operator+(className &obj) { } className operator<op>(className &obj) { } I think the answer is already in your question. Please review your lessons if you are confused, or you can just check the comment sections in that quiz to get help from the community in that course, way easier.
3rd Feb 2021, 6:25 AM
noteve
noteve - avatar
+ 1
You just have to write operator@ (where @ is the operator you want to overload) as name of the overloading function
3rd Feb 2021, 6:26 AM
Angelo
Angelo - avatar
+ 1
Here's a complete example by John Wells sir. Includes links to examples in other languages. https://code.sololearn.com/cStdw0OPtPxG/?ref=app
3rd Feb 2021, 7:49 AM
Ipang