5

考虑下面的代码。我不明白为什么我的 GCC 编译器不尝试隐式使用 Myclass::operator string(),尽管 Myclass::operator string() 已定义:

#include <string>

using namespace std;

struct T {
};

T operator+(const T& a, const T&b) { }

struct Myclass {
    operator string() const { }
    operator T() const { }
};

int main() {
    T a;
    string b;
    Myclass c;
    c + a;  // OK
    c.operator  string() + b; // OK
    c + b; // Not OK
    /* The above line does not compile, although in <string> I see:
    basic_string<_CharT, _Traits, _Alloc>
    operator+(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
          const basic_string<_CharT, _Traits, _Alloc>& __rhs)
     */
}
4

1 回答 1

2

因为字符串运算符是一个模板,所以它不能被拾取,而另一个运算符可以。

于 2012-04-07T14:30:29.410 回答