Undefined reference to static variable c++(对静态变量 c++ 的未定义引用)
问题描述
我在以下代码中遇到未定义的引用错误:
Hi i am getting undefined reference error in the following code:
class Helloworld{
public:
static int x;
void foo();
};
void Helloworld::foo(){
Helloworld::x = 10;
};
我不想要 static foo() 函数.如何在类的非 static 方法中访问类的 static 变量?
I don't want a static foo() function. How can I access static variable of a class in non-static method of a class?
推荐答案
我不想要一个
staticfoo()函数
好吧,foo() 在你的类中不是静态的,你不需要让它staticcode> 以访问您的类的 static 变量.
Well, foo() is not static in your class, and you do not need to make it static in order to access static variables of your class.
您需要做的只是为您的静态成员变量提供一个定义:
What you need to do is simply to provide a definition for your static member variable:
class Helloworld {
public:
static int x;
void foo();
};
int Helloworld::x = 0; // Or whatever is the most appropriate value
// for initializing x. Notice, that the
// initializer is not required: if absent,
// x will be zero-initialized.
void Helloworld::foo() {
Helloworld::x = 10;
};
这篇关于对静态变量 c++ 的未定义引用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:对静态变量 c++ 的未定义引用
基础教程推荐
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 常量变量在标题中不起作用 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
