- 论坛徽章:
- 0
|
如题:
顺便贴出我原程序,我是菜鸟,请大家指教指教我的程序有没有问题
/**定义父类**/
public class Employee
{
/**定义成员变量**/
private int employNum;
private String name; //采用private对变量封装,只有Employee的方法能访问该变量;
private String sex;
private int age;
private int hireDate;
private int dateOfBirth;
private float salary;
/**定义方法**/
public void employee() //定义构造方法;
{
employNum=0;
name="liutao";
sex="male";
}
public void employee(int emNum,String name,char sex ) //定义不同的构造方法;
{
employNum=emNum;
name=name;
sex=sex;
}
public void printInfo(String name) //在printInfo方法中提供对成员变量的访问,同时该方法采用public,因此该方法可以在外部使用.
{
this.name=name;
System.out.println(this.name); //这个name是否是Employee的成员变量;
}
public String getDetails()
{
return "Name:"+name+"\nSalary:"+salary;
}
}
/**定义子类**/
import java.*;
public class Manager extends Employee{ //子类继承父类;
private String department; //定义子类的成员变量;
public void manager //定义子类的构造函数
{
//在这里我想使用父类中的成员变量来作初始化是否可以???
}
public String getDetails()
{
return super.getDetails()+"\nDepartment:"+department;
}
public static void main(String args[]){
Manager ceo=new Manager(); //用子类创建一个对象实例;
String name="liutao";
/**ceo.name="liutao" --error--(由于name变量在父类Employee中被定义为private,不能在外部直接引用;因此只能通过父类的成员方法printInfo()调用 **/
ceo.printInfo(name);
}
} |
|