我可以在类主体中默认一个私有构造函数吗?

发布于 2024-12-01 23:52:42 字数 393 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

土豪 2024-12-08 23:52:42

N3291 中没有任何内容表明您不能声明 privatedefault 的内容。请注意,这是对规范第 8.4.2 节第 2 段中的更改;早期版本表示它们必须是公开的。

There is nothing in N3291 that says you cannot declare something private and default. Note that this was a change to the specification, in section 8.4.2, paragraph 2; earlier versions said that they must be public.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文