[13.6] Can I overload operator== so it lets me compare two char[] using a string comparison?
No: at least one operand of any
overloaded operator must be of some user-defined type (most of the
time that means a class).
But even if C++ allowed you to do this, which it doesn't, you wouldn't want to
do it anyway since you really should be using a std::string-like class rather than an array of char in the first place
since arrays are evil.
|