Operator Overloading
Everything on SkillVeris tagged Operator Overloading — collected across the glossary, study notes, blog, and cheat sheets.
5 resources across 3 libraries
Study Notes(1)
Cheat Sheets(1)
Interview Questions(3)
What is Operator Overloading in OOP?
Operator overloading is the object-oriented feature that lets a class redefine what a built-in operator, such as +, ==, or [], means when applied to its own ob…
What is a Friend Class in C++?
A friend class in C++ is a class explicitly granted access to another class’s private and protected members, declared using the `friend` keyword inside the cla…
Friend Functions vs Encapsulation
A friend function is a non-member function explicitly granted access to a class’s private and protected members, and it appears to conflict with encapsulation…