当进行string对象和字符串字面值进行连接时,+操作符的左右至少出现一个是string类型的。
string s1 = "hello";
string s2 = "world";
string s3 = s1 + ",";//ok
string s4 = "hello" + ",";//error
string s5 = s1 + "," + "world";ok
string s6 = "hello" + "," + s2;error
s4错误的原因是试图直接将两个字符串的字面值进行相加;
s5没错因为前面一个+相当于把前面两个先做temp = s1+",";的操作,temp是字符串型,然后将temp与后面的进行相加;
s6错误的原因参照s4、s5就知道了。
补充:重载就是对已有的操作符进行重新定义,以适应不同的数据类型,比如string s1 = string s2;int i1 = int i2;如果要用自定义的类型type_self,使得type_self tp1 = type_self tp2;一般的C++标准库里应该都有集成了,只有用到自己定义的数据类型就得重新写函数定义了。