Like This Site? 
 
RSS Feed Follow Us 

on Twitter! Be Our Fan!

C++ Operator Overloading Guidelines

Share this post!
 Vote this!

This post is about C++ Operator Overloading Guidelines by California Institute of Technology.
Description: One of the nice features of C++ is that you can give special meanings to operators, when they are used with user-defined classes. This is called operator overloading. You can implement C++ operator overloads by providing special member-functions on your classes that follow a particular naming convention. For example, to overload the + operator for your class, you would provide a member-function named operator+ on your class. more…

0 comments:

Post a Comment