步骤
1.在类中,申明数组
2.在构造函数中定义数组大小
举例
public Laker
{
public int [] team;
public Laker(int length)
{
this.team=new int[length];//错误示范 int [] team=new int[length];
}
]
错误的原因
该句在构造函数中新申明一个数组;而不是类中的成员,所以运行结束后,消失;
具体文件
com.josephu.array
Lin335
步骤
1.在类中,申明数组
2.在构造函数中定义数组大小
举例
public Laker
{
public int [] team;
public Laker(int length)
{
this.team=new int[length];//错误示范 int [] team=new int[length];
}
]
错误的原因
该句在构造函数中新申明一个数组;而不是类中的成员,所以运行结束后,消失;
具体文件
com.josephu.array
Lin335