如何在类中初始化静态常量指针?

发布于 2024-08-14 00:36:23 字数 113 浏览 4 评论 0原文

class School
{
    static const int *classcapacity; 
};

这个表达式来自我的考试,需要初始化,我该怎么做?

class School
{
    static const int *classcapacity; 
};

This expression is from my exam and it need to get initialized how can i do that ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

完美的未来在梦里 2024-08-21 00:36:23

您可以在类主体之外的源文件中初始化它,就像任何其他静态成员变量一样,即:

const int* School::classCapacity(new int(42));

You can initialize it in your source file, outside of the body of the class, just as you would any other static member variable, i.e.:

const int* School::classCapacity(new int(42));
往昔成烟 2024-08-21 00:36:23

大概是这样的:

class School{
  static const int *classcapacity   ;
};
const int *School::classcapacity = 0;

Probably this way:

class School{
  static const int *classcapacity   ;
};
const int *School::classcapacity = 0;
归途 2024-08-21 00:36:23

如果你想用 YOUR_INITIALIZER 初始化它:

class School{ static const int *classcapacity ; } ;
const int* School::classcapacity = YOUR_INITIALIZER;

If you want to initialize it with YOUR_INITIALIZER:

class School{ static const int *classcapacity ; } ;
const int* School::classcapacity = YOUR_INITIALIZER;
夕色琉璃 2024-08-21 00:36:23

我知道这已经很旧了,但是在 C++11 中,你可以这样写:

class School
{
   static const int* classcapacity{new int[4]}; // initialize with 4-element array
};

I know this is old, but in C++11, you'd write:

class School
{
   static const int* classcapacity{new int[4]}; // initialize with 4-element array
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文