通过静态成员函数初始化 C++ 中的非常量静态成员变量

发布于 2024-12-21 18:36:02 字数 321 浏览 0 评论 0原文

我正在尝试以下操作并在两个日志语句之间发生模拟器崩溃。有什么问题吗?

protected:
    static int maxSize;
public:
    static void setFontSizeRange(int max) {
        Log("here %d->%d", max, maxSize);
        maxSize = max;
        Log("ok");
    }

我可以获取日志来重现参数,但它在输出静态成员之前崩溃(因此上面显示的第一个日志在引用该参数时将不起作用)。

谢谢。

I am trying the following and getting an emulator crash between the two log statements. Is there something wrong?

protected:
    static int maxSize;
public:
    static void setFontSizeRange(int max) {
        Log("here %d->%d", max, maxSize);
        maxSize = max;
        Log("ok");
    }

I can get the log to reproduce the parameter but it crashes before outputting the static member (so the first log shown above would not work while it refers to that).

Thanks.

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

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

发布评论

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

评论(1

神也荒唐 2024-12-28 18:36:02

您应该定义静态成员。

class Something
{
protected:
    static int maxSize;
public:
    static void setFontSizeRange(int max) {
        Log("here %d->%d", max, maxSize);
        maxSize = max;
        Log("ok");
    }
}; // class declaration ends here...

int Something::maxSize = 0;

You should define the static member.

class Something
{
protected:
    static int maxSize;
public:
    static void setFontSizeRange(int max) {
        Log("here %d->%d", max, maxSize);
        maxSize = max;
        Log("ok");
    }
}; // class declaration ends here...

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