gpt4 book ai didi

c++ - 如何从另一个方法访问静态变量?

转载 作者:太空宇宙 更新时间:2023-11-04 15:18:29 25 4
gpt4 key购买 nike

是否可以从 foo2() 访问变量 myVar

struct A {
void foo() {
static int myVar;
}

void foo2() {
// can I access A::foo::myVar from here ??
}
};

谢谢!

马西莫

最佳答案

您可以从函数返回对它的引用:

int& foo() {
static int myVar;
return myVar;
}

void foo2() {
std::cout << foo() << std::endl;
}

请注意,从您的问题为什么您需要访问此变量并不清楚。无论您要解决什么问题,都可能有更好的解决方案。

关于c++ - 如何从另一个方法访问静态变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25746660/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com