当前位置: 代码迷 >> J2SE >> for(Enployee e:staff) 什么意思啊该怎么处理
  详细解决方案

for(Enployee e:staff) 什么意思啊该怎么处理

热度:387   发布时间:2016-04-24 00:22:01.0
for(Enployee e:staff) 什么意思啊?
Employee[] staff=new Employee[3];
staff[0]=new Employee("Carry",6000,1992,15,21);
staff[1]=new Employee("Tom",60000,1993,15,21);
staff[2]=new Employee("Jack",60000,1994,15,21);
for(Employee e:staff)
e.raiseSalary();
大侠,rt!

------解决方案--------------------
集合遍历
  相关解决方案