如何在C++中使用operator = with匿名对象?

All*_*lan 4 c++ methods operator-overloading

我有一个带有重载运算符的类:

IPAddress& IPAddress::operator=(IPAddress &other) {
    if (this != &other) {
        delete data;
        this->init(other.getVersion());
        other.toArray(this->data);
    }
    return *this;
}
Run Code Online (Sandbox Code Playgroud)

当我尝试编译时:

IPAddress x;
x = IPAddress(IPV4, "192.168.2.10");
Run Code Online (Sandbox Code Playgroud)

我收到以下错误:

main.cc: In function ‘int main()’:
main.cc:43:39: error: no match for ‘operator=’ in ‘x = IPAddress(4, ((const std::string&)(& std::basic_string<char>(((const char*)"192.168.2.10"), ((const std::allocator<char>&)((const std::allocator<char>*)(& std::allocator<char>())))))))’
IPAddress.h:28:20: note: candidate is: IPAddress& IPAddress::operator=(IPAddress&)
Run Code Online (Sandbox Code Playgroud)

但是,这两个工作正常(虽然它们不能为我服务):

IPAddress x;
IPAddress(IPV4, "192.168.2.10") = x;
Run Code Online (Sandbox Code Playgroud)

-

IPAddress x;
x = *(new IPAddress(IPV4, "192.168.2.10"));
Run Code Online (Sandbox Code Playgroud)

这是怎么回事?我假设分配算子的工作方式不正确吗?

Ale*_*ler 5

赋值运算符的右侧应该采用a const IPAddress&.

临时对象可以绑定到const引用,但不能绑定到非const引用.这就是为什么x = IPAddress(IPV4, "192.168.2.10");不起作用.

IPAddress(IPV4, "192.168.2.10") = x; 之所以有效是因为在临时对象上调用成员函数是合法的.