我需要在运行时设置静态浮点变量的值,但我无法做到这一点。我将举例说明我的情况
文件.h
class B {
static float variable1;
static float variable2;
public:
afunction(float a, float b);
}
文件.cpp
#include 'afile.h'
B::afunction (float a, float b) {
float B:variable1 = a;
float B:variable2 = b;
}
正如您在上面的代码中看到的那样,调用了函数“afunction”,然后必须设置变量“variable1”和“variable2”。我知道'afunction'定义中的代码是错误的,但是我需要一种在运行时设置变量1和变量2的值的方法。
如果它与我的代码相关,我正在使用 Visual Studio 6.0 开发应用程序