| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 518 人关注过本帖
标题:初学疑惑2
取消只看楼主 加入收藏
yynn
Rank: 1
等 级:新手上路
帖 子:279
专家分:0
注 册:2005-11-4
收藏
 问题点数:0 回复次数:1 
初学疑惑2

package yynn.boozer.qin;

import java.util.*;

public class ManagerTest {

public static void main(String[] args) {
Manager boss = new Manager("Tao", 80000, 2010, 12, 15);
boss.setBonus(5000);
Employee[] staff = new Employee[3];
staff[0] = boss;
staff[1] = new Employee("Harry Hacker", 50000, 1989, 10, 1);
staff[2] = new Employee("Tommy Tester", 40000, 1990, 3, 15);
for (int i = 0; i < staff.length; i++) {
Employee e = staff[i];
System.out.println("name=" + e.getName() + ",salary="
+ e.getSalary());
}

}

}

class Employee {
public Employee(String n, double s, int year, int month, int day) {
name = n;
salary = s;
GregorianCalendar calendar = new GregorianCalendar(year, month - 1, day);
hireDay = calendar.getTime();
}

public String getName() {
return name;
}

public double getSalary() {
return salary;
}

public Date getHireDay() {
return hireDay;
}

public void raiseSalary(double byPercent) {
double raise = salary * byPercent / 100;
salary += raise;
}

private String name;
private double salary;
private Date hireDay;
}

class Manager extends Employee {
public Manager(String n, double s, int year, int month, int day) {
super(n, s, year, month, day);
bonus = 0;
}

public double getSalary() {
double baseSalary = super.getSalary();
return baseSalary + bonus;

}

public void setBonus(double b) {
bonus = b;
}

private double bonus;
}

1。就是第一行的那个包在eclipse中什么用的!
2。就是“,salary” ,号怎么卡当中呢!
3。最后那private是封装?不用可以吗?

搜索更多相关主题的帖子: 初学 
2007-09-26 19:14
yynn
Rank: 1
等 级:新手上路
帖 子:279
专家分:0
注 册:2005-11-4
收藏
得分:0 
谢谢楼上各位!

2007-09-27 01:00
快速回复:初学疑惑2
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.061380 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved