c – 使用运算符进行隐式转换
作者:互联网
这部分是受到this问题的启发.当我写代码时:
void test(std::string inp)
{
std::cout << inp << std::endl;
}
int main(void)
{
test("test");
return 0;
}
“test”从const char *隐式转换为std :: string,我得到了预期的输出.但是,当我尝试这个:
std::string operator*(int lhs, std::string rhs)
{
std::string result = "";
for(int i = 0; i < lhs; i++)
{
result += rhs;
}
return result;
}
int main(void)
{
std::string test = 5 * "a";
return 0;
}
我得到编译器错误,类型’int’和’const char [2]’的无效操作数到二进制’运算符*’. “a”在这里没有隐式转换为std :: string,而是一个const char *.为什么编译器能够在函数调用的情况下确定是否需要隐式转换,而不是运算符的情况?
解决方法:
实际上,操作符与其他类型的职能有不同的规则.
If no operand of an operator in an expression has a type that is a class or an enumeration, the operator
is assumed to be a built-in operator and interpreted according to Clause 5.
([over.match.oper] / 1)
标签:c,operator-overloading 来源: https://codeday.me/bug/20191008/1869751.html