MainFrame
クラスには、型を受け取って返すという名前のメソッドがありcreatePerson
ます。String id
Person
私のPerson
クラスにはgetFatherName
、文字列を返すメソッドがあります。
私のTree
クラスでは、次のステートメントを実行できますか?:
String father = ( MainFrame.createPerson("001") ).getFatherName();
MainFrame のインスタンスを作成せずにこれを行うことはできますか?
編集: MainFrame のインスタンスを作成できません。これは GUI を備えたメイン クラスです。