0

您好,我在下面有这样的代码,但我不知道为什么它不起作用。

class Clazz2;
class Clazz
{
    public:
    void smth(Clazz2& c)
    {

    }

    void smth2(const Clazz2& c)
    {

    }
};

class Clazz2
{
    int a,b;
};

int main()
{
    Clazz a;
    Clazz2 z;
    a.smth(z);
    //a.smth(Clazz2()); //<-- this doesn't work
    a.smth2(Clazz2()); // <-- this is ok
    return 0;
}

我有编译错误:

g++ -Wall -c "test.cpp" (in directory: /home/asdf/Desktop/tmp)
test.cpp: In function ‘int main()’:
test.cpp:26:17: error: no matching function for call to ‘Clazz::smth(Clazz2)’
test.cpp:26:17: note: candidate is:
test.cpp:5:7: note: void Clazz::smth(Clazz2&)
test.cpp:5:7: note:   no known conversion for argument 1 from ‘Clazz2’ to ‘Clazz2&’
Compilation failed.
4

2 回答 2

6

这是因为非常量引用不允许绑定到临时对象。const另一方面,对 的引用可以绑定到临时对象(参见 C++11 标准的 8.3.5/5)。

于 2013-02-09T16:30:28.130 回答
2

您的第smth2一个引用不能绑定到像您的构造函数调用这样的临时对象a.smth(Claszz2())。但是,const引用可以绑定到临时,因为我们不能修改临时,所以它是允许的。

在 C++11 中,您可以使用右值引用,以便您也可以绑定临时对象:

void smth2(Clazz2 &&);

int main()
{
    a.smth(Claszz2()); // calls the rvalue overload
}
于 2013-02-09T16:31:14.523 回答