+ 1
What is unary operator overloading?
4 Respostas
+ 5
sammy what do you want to know?
+ 4
unary operators are ! + - for most languages such as !true, +5, -4. Operator overloading allows you to make operators have a method of your class. I have a full set of operator overloading examples for each language that runs here and supports it. Since your taking C++ to the point you might understand it, I'll link my version. The comments will get you to all the others.
https://code.sololearn.com/cStdw0OPtPxG
+ 3
Line 28 declares my unary + operator, lines 118 to 121 gives it's implementation, and line 200 makes use of it.
+ 1
wanna know??