我试图找到如何从静态函数中获取非静态变量的方法?
在静态函数中,我想从非静态变量中获取值。
有可能的?
class test {
private:
static void test();
string test;
}
我试图找到如何从静态函数中获取非静态变量的方法?
在静态函数中,我想从非静态变量中获取值。
有可能的?
class test {
private:
static void test();
string test;
}