hi, how to overload operators in C++?Normally, following lines are not allowed:
double d = 5;
d = d^2;
//i wanna d to be 25;
How do I overload the operator ^ myself, to allow d=d^2?
Thanks!
operator's primitive meaning is not allowed to be changed..
and new operator cannot be created. read more about operator overloading on any c++ book
