I have been studying operator overloading and I understand the - + () and a few others but I am stuck with the ->. I want to have full understanding of all of these before I continue in my c++ manual. Any videos, manuals, or advice plz. thanks
Number Number::operator+(Number num)
{
Number temp;
temp.x=x+num.x;
return (temp);
}
I broke this down fairly easy but I am feeling really lost with the -> concept.
Glad to have that chart though. I will rest my brain before I proceed to learn this anymore.