请考虑以下代码:
class A { A(const A&); public: A() {} }; int main() { const A &a = A(); }
此代码与GCC 4.7.2编译良好,但无法使用Visual C 2010进行编译,并出现以下错误:
test.cc(8) : error C2248: 'A::A' : cannot access private member declared in class 'A' test.cc(2) : see declaration of 'A::A' test.cc(1) : see declaration of 'A'
因此,在将临时绑定到引用时,是否有必要使用复制构造函数?
这与我之前的问题有些相关:
Is there a way to disable binding a temporary to a const reference?
解决方法
So is it necessary to have a copy constructor accessible when binding a temporary to a reference?
在C 11之后 – 没有
前C 11 – 是的.
此代码与GCC 4.7.2编译良好,因为它符合C 11标准.
C 11标准要求当从prvalue初始化const引用时,它必须直接绑定到引用对象,并且不允许创建临时对象.此外,不使用或不需要复制构造函数.
在C 11之前,规则是不同的.并且此行为(是否将调用复制构造函数)是实现定义的. C 03允许在将const引用绑定到临时时调用复制构造函数,因此在C 11后需要可以访问复制构造函数. Visual C 2010遵循C 03标准.