I\'m following a tutorial for C++ and looking at strings and overloading with operators such as +=, ==, != etc. Currently I have a sim
+=
==
!=
The comparison operators implement lexicographic ordering of strings.
-= and *= are not defined for strings.
-=
*=