免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1289 | 回复: 6
打印 上一主题 下一主题

关于FOR的使用问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-12-17 12:53 |只看该作者 |倒序浏览
  1.       for (Employee e : staff)
  2.          System.out.println("name=" + e.getName()
  3.             + ",salary=" + e.getSalary()
  4.             + ",hireDay=" + e.getHireDay());
复制代码



for (Employee e : staff)    这是什么什么意思~~~~?

论坛徽章:
0
2 [报告]
发表于 2004-12-17 14:00 |只看该作者

关于FOR的使用问题

全部的代码如下,  不过出现了点问题


EmployeeTest.java:20: ';' expected
      for (Employee e : staff)
                      ^
EmployeeTest.java:24: illegal start of expression
      for (Employee e : staff)
      ^
EmployeeTest.java:28: illegal start of expression
   }
   ^
3 errors

看不明白~~那位大虾指点下?
  1. import java.util.*;

  2. public class EmployeeTest
  3. {  
  4.    public static void main(String[] args)
  5.    {  
  6.       // fill the staff array with three Employee objects
  7.       Employee[] staff = new Employee[3];

  8.       staff[0] = new Employee("Carl Cracker", 75000, 1987, 12, 15);
  9.       staff[1] = new Employee("Harry Hacker", 50000, 1989, 10, 1);
  10.       staff[2] = new Employee("Tony Tester", 40000, 1990, 3, 15);

  11.       // raise everyone's salary by 5%
  12.       for (Employee e : staff)
  13.          e.raiseSalary(5);

  14.       // print out information about all Employee objects
  15.       for (Employee e : staff)
  16.          System.out.println("name=" + e.getName()
  17.             + ",salary=" + e.getSalary()
  18.             + ",hireDay=" + e.getHireDay());
  19.    }
  20. }

  21. class Employee
  22. {  
  23.    public Employee(String n, double s, int year, int month, int day)
  24.    {  
  25.       name = n;
  26.       salary = s;
  27.       GregorianCalendar calendar = new GregorianCalendar(year, month - 1, day);
  28.          // GregorianCalendar uses 0 for January
  29.       hireDay = calendar.getTime();
  30.    }

  31.    public String getName()
  32.    {  
  33.       return name;
  34.    }

  35.    public double getSalary()
  36.    {  
  37.       return salary;
  38.    }

  39.    public Date getHireDay()
  40.    {  
  41.       return hireDay;
  42.    }

  43.    public void raiseSalary(double byPercent)
  44.    {  
  45.       double raise = salary * byPercent / 100;
  46.       salary += raise;
  47.    }

  48.    private String name;
  49.    private double salary;
  50.    private Date hireDay;
  51. }
复制代码

论坛徽章:
0
3 [报告]
发表于 2004-12-17 16:44 |只看该作者

关于FOR的使用问题

这个是不是java 1.5的新语法啊?

论坛徽章:
0
4 [报告]
发表于 2004-12-17 19:25 |只看该作者

关于FOR的使用问题

这代码还是在书上的~~~
我在网站上下下来的哦~~

论坛徽章:
0
5 [报告]
发表于 2004-12-17 21:30 |只看该作者

关于FOR的使用问题

应该是伪代码,

论坛徽章:
0
6 [报告]
发表于 2004-12-17 22:30 |只看该作者

关于FOR的使用问题

是1.5新加的for-each语法。可以用jdk 1.5编译。

论坛徽章:
0
7 [报告]
发表于 2004-12-18 18:18 |只看该作者

关于FOR的使用问题

不是吧~~

明明写的是1.4.2  原来是1.5 的呀
还真是的
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP