通过静态成员函数初始化 C++ 中的非常量静态成员变量
我正在尝试以下操作并在两个日志语句之间发生模拟器崩溃。有什么问题吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该定义静态成员。
You should define the static member.