好的,基本上我有三个课程:
- 主班
- 苹果(两个构造函数)
- 馅饼
在我做的主要课程中:
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 类访问变量“一”或“二”,它们将返回 null。有人能帮我吗?