gpt4 book ai didi

c++ - 具有私有(private)构造函数的类的全局对象

转载 作者:太空宇宙 更新时间:2023-11-04 12:12:32 26 4
gpt4 key购买 nike

是否有可能以某种方式将全局作用域声明为类的友元?

我遇到的问题如下:

class Foo
{
Foo() {}
};

Foo foo; //error: 'Foo::Foo()' is private

所以,我想要的是能够在全局范围而不是其他任何地方声明 Foo 的对象。

请注意,这个问题纯粹是出于兴趣,我并不是要解决实际问题。

最佳答案

不,这是不可能的。您只能将特定类或函数命名为 friend 。不可能使包括全局命名空间在内的命名空间成为友元。

我认为没有很好解决方法的原因是当你定义一个类或函数时,只允许一个定义(不考虑重载,它们是完全不同的函数)。但是,您可以根据需要多次打开命名空间,并且每次都可以向其中添加额外的内容。因此,如果您允许访问特定 namespace ,任何想要访问的人都可以键入:

namespace TheNamesapceWithAccess
{
// I've got access to it here too as well as
// to the original namespace definition that was
// the only one that was intended to be allowed access.
// And I could define a function here that allows access the private thing
// from outside this namespace. I've just subverted the access restriction
// you intended.
}

关于c++ - 具有私有(private)构造函数的类的全局对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9249815/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com