gpt4 book ai didi

c++ - 为什么转换不适用于 C++ 中的自定义运算符?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:38:47 26 4
gpt4 key购买 nike

考虑以下代码:

class C {
public:
int operator-(int x) {
return 3-x;
}
};

class wrapper {
public:
operator C() {
static C z;
return z;
}
} wrap;

int main() {
return wrap-3;
}

它在 g++ 上给出了这个错误:

test.cpp: In function ‘int main()’:
test.cpp:17:17: error: no match for ‘operator-’ in ‘wrap - 3’

转换运算符似乎可以工作,因为这个版本可以工作:

class wrapper {
public:
operator int() {
static int z=3;
return z--;
}
} wrap;

int main() {
return wrap-3;
}

operator- 似乎也能正常工作,因为这段代码可以编译:

class C {
public:
int operator-(int x) {
return 3-x;
}
};

int main() {
C c
return c-3;
}

这两者的结合有什么问题?为什么不能在隐式转换后应用运算符?这个问题有什么解决方法吗?

最佳答案

当成员函数匹配时,不对第一个操作数执行隐式转换。让您的运算符(operator)成为非成员(member),也许是 friend :

class C {
};

int operator-(C c, int x) {
return 3-x;
}

来自 [over.match.oper]:

— If T1 is a complete class type, the set of member candidates is the result of the qualified lookup of T1::operator@ (13.3.1.1.1); otherwise, the set of member candidates is empty.

关于c++ - 为什么转换不适用于 C++ 中的自定义运算符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9053299/

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