わかりましたので、基本的に私は3つのクラスを持っています:
- メインクラス
- Apple(2 つのコンストラクター)
- パイ
メインクラスで私は:
Apple apple = new Apple(String one, String two);
次に、Apple クラスはそれらをグローバルに設定します。
public Apple()
{
//empty constructor
}
public Apple(String one, String two)
{
this.one = one;
this.two = two;
}
次に、 Pie クラスで次のことを行います。
Apple apple = new Apple();
次に、Pie クラスから変数 'one' または 'two' にアクセスしようとすると、null が返されます。誰かが私を助けることができますか?