for each循环还是第一次见,“java SE 5.0增加了一种功能很强的循环结构,可以用来一次处理数组中的每个元素(其他类型的元素集合亦可)而不必为指定下标值而分心”。

  这种增强的for each循环的语句格式为:

  for(variable : collection)statement

定义一个变量用于暂存集合的每一个元素,并执行相应的语句。collection这一集合表达式必须是一个数组或者是一个实现了Iterable接口的类对象(先不管这个Iterable)。

  例如:

  for(int element : a)//int element  其中的element相当于  for中的i,int是element的数据类型(我的个人理解不知道对不对~~)

    System.out.println(element);

相当于:

    for(int i=0;i<a.length;i++)

      System.out.println(a[i]);//int element  其中的element相当于  for中的i,

打印数组a的每一个元素,一个元素占一行。这个循环可以读作“循环a中的每一个元素”(element是元素的意思),再来一个具体例子来看看。

这个是书中的例子,直接贴出来

 1 import java.util.*;
 2 
 3 /**
 4  * This program tests the Employee class.
 5  * @version 1.11 2004-02-19
 6  * @author Cay Horstmann
 7  */
 8 public class EmployeeTest
 9 {
10    public static void main(String[] args)
11    {
12       // fill the staff array with three Employee objects
13       Employee[] staff = new Employee[3];
14 
15       staff[0] = new Employee("Carl Cracker", 75000, 1987, 12, 15);
16       staff[1] = new Employee("Harry Hacker", 50000, 1989, 10, 1);
17       staff[2] = new Employee("Tony Tester", 40000, 1990, 3, 15);
18 
19       // raise everyone's salary by 5%
20       for (Employee e : staff)
21          e.raiseSalary(5);
22 
23       // print out information about all Employee objects
24       for (Employee e : staff)
25          System.out.println("name=" + e.getName() + ",salary=" + e.getSalary() + ",hireDay="
26                + e.getHireDay());
27    }
28 }
29 
30 class Employee
31 {
32    public Employee(String n, double s, int year, int month, int day)
33    {
34       name = n;
35       salary = s;
36       GregorianCalendar calendar = new GregorianCalendar(year, month - 1, day);
37       // GregorianCalendar uses 0 for January
38       hireDay = calendar.getTime();
39    }
40 
41    public String getName()
42    {
43       return name;
44    }
45 
46    public double getSalary()
47    {
48       return salary;
49    }
50 
51    public Date getHireDay()
52    {
53       return hireDay;
54    }
55 
56    public void raiseSalary(double byPercent)
57    {
58       double raise = salary * byPercent / 100;
59       salary += raise;
60    }
61 
62    private String name;
63    private double salary;
64    private Date hireDay;
65 }

20 and  24 行的代码,for(Employee e :staff)其中的e是Employee的新对象,是吗?这两个for each循环改成for循环应该是什么??请各位大牛给看看~~~

小弟自己改一下:

  

for(int i=0;i<staff.length;i++)
{
      staff[i].raiseSalary(6);
      System.out.println("name=" + staff[i].getName() + ",salary=" + staff[i].getSalary() + ",hireDay="
           + staff[i].getHireDay());

}输出的结果一样,不知道对不对~~~~  请各位大牛指教