本文介绍了两个类可以互相访问吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果我有两个类A和B,
注意:以下不编译。
class A
{
public:
static void funcA(){}
void call_funcB {B :: funcB(); } //调用类B的函数
};
class B
{
public:
static void funcB(){}
void call_funcA(){A :: funcA } //调用类A的函数
};
错误:
错误C2653:'B':不是类或命名空间名称
错误C3861:'funcB':未找到标识符
您可以调用每个类的静态函数吗?
解决方案您必须这样做:
A类
{
public:
static void funcA(){}
void call_funcB();
};
class B
{
public:
static void funcB(){}
void call_funcA(){A :: funcA } //调用类A的函数
};
void A :: call_funcB(){B :: funcB(); } //调用类B的函数
这允许
A :: call_funcB
查看B
声明。If I have two classes called A and B,
Note: The following doesn't compile.
class A { public: static void funcA() {} void call_funcB() { B::funcB(); } // call class B's function }; class B { public: static void funcB() {} void call_funcA() { A::funcA(); } // call class A's function };
Errors:
error C2653: 'B' : is not a class or namespace name error C3861: 'funcB': identifier not found
Can you call the static functions of each class?
解决方案You have to do this:
class A { public: static void funcA() {} void call_funcB() ; }; class B { public: static void funcB() {} void call_funcA() { A::funcA(); } // call class A's function }; void A::call_funcB() { B::funcB(); } // call class B's function
This allows
A::call_funcB()
to see theB
declaration.这篇关于两个类可以互相访问吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!