Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在另一个类(比如 B)的静态成员函数中访问某个类(比如 A)的非静态成员变量的解决方法是什么?我正在用 C++ 编码。A 类是使用 B 类的公共属性派生的。
任何指针?
调用静态成员函数时将引用/指针传递给实例。使用该实例调用非静态成员函数。
非静态成员可以通过类的实例访问。因此,您可以通过静态成员函数中该类的实例访问成员(非静态)。
问候, 斯普克