gpt4 book ai didi

c++ - 为什么允许 int 和 const int 的不同转换函数?

转载 作者:IT老高 更新时间:2023-10-28 12:57:34 26 4
gpt4 key购买 nike

为什么允许在 C++ 中编译以下内容?

#include<iostream>
using namespace std;

class mytest
{
public:
operator int()
{
return 10;
}

operator const int()
{
return 5;
}
};

int main()
{
mytest mt;
//int x = mt; //ERROR ambigious
//const int x = mt; //ERROR ambigious
}

为什么允许编译转换运算符的不同版本(基于常量)是有意义的,因为它们的使用总是会导致歧义?

有人可以澄清我在这里缺少什么吗?

最佳答案

对于转换,它们是模棱两可的;但你可以明确地调用它们。例如

int x = mt.operator int();
const int x = mt.operator const int();

关于c++ - 为什么允许 int 和 const int 的不同转换函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50944588/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com