クラスA、Bが2つあります。
Aの場合、2つの方法callB()
とがありchecksomethinginB()
ます。
Bの場合、1つの方法があり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メソッドを使う良い方法がわかりません。私が作成できるのは静的関数を使うことですが、あなたの提案に感謝して、もっと良い方法があると思います!!