可以在 C++ 中将类声明为静态吗?
这在 C++ 中是否合法(是的,我知道它在 .net 中是合法的),如果是,如何/为什么要使用它?
Is this legal in c++ (yes i know it's legal in .net), and if so, how/why would it be used?
static class foo{
public:
foo();
int doIt(int a);
};
推荐答案
如果您使用的是 C++/CLI,static
的实际语法是
If you're using C++/CLI, the actual syntax for static
is
ref class Foo abstract sealed /* abstract sealed = C# static */
{
};
相关文章