5
Considere el siguiente código. No entiendo por qué mi compilador GCC no trata de utilizar de manera implícita Myclass :: string operador(), aunque se define Myclass cadena operador ::():¿Por qué es necesario llamar explícitamente a Myclass :: operator string() con std :: string :: operator +()?
#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)
*/
}
Creo que la razón es que 'std :: operator +' es una plantilla de función, y no una función. –