A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© haha7539511 初级黑马   /  2014-9-10 13:46  /  1168 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

面向对象中,this和super的 用法   有大神能给详细解释下么?

2 个回复

倒序浏览
this用于调用本类的属性和方法,super调用父类的属性和方法;
如果是在构造器中调用其他构造器,this和super只能出现一个并且只能出现在构造器的第一行。
回复 使用道具 举报
this表示当前对象,super表示当前对象类的父类。

例:
   class Employee{
         String name;
         String jobid;
         double wage;
        //局部变量与成员变量重名的时候就要用到this.
        Employee(String name,String jobid,double wage){
                this.name=name;   
                this.jobid=jobid;
                this.wage=wage;
        }

        public void work(){
                System.out.println(this.name+","+this.jobid+","+this.wage);
                System.out.println("工作");
        }

}

class Manager extends Employee{
         double reward;
       
        Manager(String name,String jobid,double wage,double reward){
                super(name,jobid,wage);    //由于存在继承关系,这时就可以用super调用父类的构造方法进行初始化,如果不写,默认是super();   注:这时super只能写在第一行。
                this.reward=reward;        //reward是子类特有的字段。
        }

        public void work(){
                System.out.println(this.name+","+this.jobid+","+this.wage+","+this.reward);
                System.out.println("工作");
        }
}

public class Test1{
        public static void main(String args[]){
                Employee em=new Employee("普通员工","123",4500);
                em.work();
          
                Manager m=new Manager("经理","234",8200,1800);
                m.work();

        }
}
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马