encryptotion 2022-05-16 23:17 采纳率: 100%
浏览 18
已结题

重载输出运算符时的怪问题

代码如下:
#include
#include
using namespace std;
class String{
char* array;
public:
String(const char* p){
array=new char[strlen(p)+1];
strcpy(array,p);
}
~String(){ delete[] array; }
String operator+(const char* b) {
char* p=new char[strlen(array)+strlen(b)+1];
strcpy(p,array);
strcat(p,b);
return String(p);
}
operator int(){
return strlen(array);
}
friend ostream& operator<<(ostream& output, String& a)
{
output<<a.array;
return output;
}
};
int main()
{
String string1("mystring");
cout<<string1+"ab"<<endl;
cout<<string1<<endl;
cout<<string1+3<<endl;
cout<<string1<<endl;
return 0;
}
运行结果为:
10
mystring
11
mystring
问题:重载执行了string1+"ab",返回临时对象,用cout输出时竟然又将临时对象转为int,而没有调用<<重载。但如果<<重载第二参数前加const,则输出为:
mystringab
mystring
11
mystring
谁能解释一下?

  • 写回答

2条回答 默认 最新

  • encryptotion 2022-05-16 23:25
    关注

    对于main函数第二句cout<<string1+"ab",先执行+重载返回临时对象,然后编译器试图匹配<<运算符的重载。因为自动生成的临时对象都是const的,而const对象是无法转换成非const对象。所以与<<重载函数第二参数不能匹配,因而编译器尝试进行类型转换。
    编译器匹配次序是先找能运算符重载函数,如果不能匹配,才尝试类型转换函数。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 5月31日
  • 已采纳回答 5月23日
  • 创建了问题 5月16日

悬赏问题

  • ¥15 软件定义网络mininet和onos控制器问题
  • ¥15 微信小程序 用oss下载 aliyun-oss-sdk-6.18.0.min client报错
  • ¥15 ArcGIS批量裁剪
  • ¥15 labview程序设计
  • ¥15 为什么在配置Linux系统的时候执行脚本总是出现E: Failed to fetch http:L/cn.archive.ubuntu.com
  • ¥15 Cloudreve保存用户组存储空间大小时报错
  • ¥15 伪标签为什么不能作为弱监督语义分割的结果?
  • ¥15 编一个判断一个区间范围内的数字的个位数的立方和是否等于其本身的程序在输入第1组数据后卡住了(语言-c语言)
  • ¥15 Mac版Fiddler Everywhere4.0.1提示强制更新
  • ¥15 android 集成sentry上报时报错。