作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
考虑以下代码:
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/
我是一名优秀的程序员,十分优秀!