1.Employee e = new Employee();
for(int i = 0;i<staff.length;i++){
e = staff[i];
System.out.println("name=" + e.getname() +",salary=" + e.getsalary()); 代码new一个Employee对象,是需要写无参数的构造方法的,因为类里有有参数的构造方法。
2.for(Employee e : staff){
System.out.println("name=" + e.getname() +",salary=" + e.getsalary()); 实现的功能跟上面是一样的,为什么这个就不要写无参数的构造方法呢?(类里有一个有参数的构造方法)
|