摘要: Employee类:public class EmployeeTest{ public static void main(String[] args) { // fill the staff array with three Employee objects Employee[] staff = new Employee[3]; staff[0] = new Employee("Carl Cracker", 75000, 1987, 12, 15); staff[1] = new Employee("Harry Hacker", 50000,... 阅读全文
posted @ 2013-11-16 23:28 王耀it 阅读(256) 评论(0) 推荐(0) 编辑