2017-01-21 17:39发布
考虑如下代码
class Foo { public: int x, y; }; Foo operator*(const Foo &lhs, const Foo &rhs) { Foo ret; return ret; } int main() { Foo a, b, c; (a * b) = c; return 0; }
operator*(a, b)返回的应该是一个右值,为什么可以被赋值呢??编译器没有提示错误。
你的Code是有问题的,在我这儿.
最多设置5个标签!
你的Code是有问题的,在我这儿.
一周热门 更多>