我可以在类主体中默认一个私有构造函数吗?
GCC 4.5 不允许我这样做:
class foo {
public:
foo() = default;
private:
foo(foo const&) = default;
foo& operator=(foo const&) = default;
};
它抱怨:
错误:使用非公共访问声明的“foo::foo(const foo&)”不能在类主体中默认
错误:'foo&使用非公共访问声明的 foo::operator=(const foo&)' 不能在类主体中默认
但是,GCC 4.6 允许我这样做。哪一个是正确的?
GCC 4.5 doesn't let me do this:
class foo {
public:
foo() = default;
private:
foo(foo const&) = default;
foo& operator=(foo const&) = default;
};
It complains that:
error: 'foo::foo(const foo&)' declared with non-public access cannot be defaulted in the class body
error: 'foo& foo::operator=(const foo&)' declared with non-public access cannot be defaulted in the class body
However, GCC 4.6 lets me do it. Which one is correct?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
N3291 中没有任何内容表明您不能声明
private
和default
的内容。请注意,这是对规范第 8.4.2 节第 2 段中的更改;早期版本表示它们必须是公开的。There is nothing in N3291 that says you cannot declare something
private
anddefault
. Note that this was a change to the specification, in section 8.4.2, paragraph 2; earlier versions said that they must be public.