Question On A KeyWord

Started by
0 comments, last by Q4u 21 years, 8 months ago
AnyOne know wut does the keyword "operator" use for? how to use it? Thx For Ur Time! TaKe Ur TiMe! EtErNaL C++
TaKe Ur TiMe!EtErNaL C++
Advertisement
i beivle "operator" is only used for overloading operators to be used with your own data types/classes/structs

for example:

struct point{
int x,y;
};

point operator+(point &lhs, point &rhs)
{
point temp;
temp.x=rhs.x+lhs.x;
temp.y=rhs.y+lhs.y;
return temp;
}


that will add 2 points together so that you can now use this with your struct:

point x,y,z;
z=x+y;
______________blah

This topic is closed to new replies.

Advertisement