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是封装?不用可以吗?
----------------解决方案--------------------------------------------------------
1。“包”是将不同的类进行分类,例如你可以把 student,teacher 归在一个“包”里面,把 school,enterprise 归在另一个“包”里面,当你在一个包里面需要另一个包内的类的时候,而且如果那个类不是 public 的,那你就需要 import 一下。
2。这个逗号时属于显示的内容,它位于一组引号中间。是会被 println 显示出来的。
3。这个 bonus 是 Employee 这个类的私有变量(private),可以在该类的所有方法内被调用,但是不可以被别的类使用。
----------------解决方案--------------------------------------------------------
1.新建一个package就行了。
2.“,”是分隔符
3.是封装,用了安全性好。不然,你在别的class中如果也定义一个bonus的话,就会冲突!
----------------解决方案--------------------------------------------------------
把类的成员变量设成private,是进行封装,为了在这个类之外不会对数据进行修改,从而发生错误!
----------------解决方案--------------------------------------------------------
谢谢楼上各位!
----------------解决方案--------------------------------------------------------