我有两个A类,B类。
对于A,我有两种方法callB()
,和checksomethinginB()
。
对于 B,我有一种方法execute()
。
我像这样使用它们:
A _a;
_a.callB(); //inside the function, B object _b will be created
//after _b created, in another place, _b will execute _b.execute().
_b.execute()
{
// I want to use A method checksomethinginB()
}
所以我不知道在B中使用A方法的好方法,我可以创建的是使用静态函数,但我认为可能有更好的方法,谢谢你的建议!!