Java基础(basis)-----关键字this和super的作用

   1.关键字this

  • 可以用来修饰属性、方法、构造器;this理解为当前对象或当前正在创建的对象
  • 局部变量与成员变量同名,成员变量被屏蔽,用"this.成员变量"的方式访问成员变量
  • 可以在构造器中通过“this(形参)”的方式显示的调用本类中其它重载的指定的构造器,在构造器内部必须声明在首行
package com.keyword;

/**
 * this关键字
 * 
 * @author yyx 2019年2月15日
 */
public class ThisDemo {
    private String stuName;
    private Integer stuAge;
    private String stuSex;        

    public ThisDemo() {
        super();
        System.out.println("无参构造函数");
        this.sayWord(); //this调用方法
    }

    public ThisDemo(String stuName, Integer stuAge) {
        this();  // 调用重载的构造方法
        this.stuName = stuName;
        this.stuAge = stuAge;
        System.out.println("两个参数的构造函数");
    }

    public ThisDemo(String stuName, Integer stuAge, String stuSex) {
        this(stuName, stuAge);  // 调用重载的构造方法
        this.stuSex = stuSex;
        System.out.println("三个参数的构造函数");
    }

    public String getStuName() {
        return stuName;
    }

    public void setStuName(String stuName) {
        this.stuName = stuName;
    }

    public Integer getStuAge() {
        return stuAge;
    }

    public void setStuAge(Integer stuAge) {
        this.stuAge = stuAge;
    }

    public String getStuSex() {
        return stuSex;
    }

    public void setStuSex(String stuSex) {
        this.stuSex = stuSex;
    }        
    
    @Override
    public String toString() {
        return "ThisDemo [stuName=" + stuName + ", stuAge=" + stuAge + ", stuSex=" + stuSex + "]";
    }

    public void sayWord() {
        System.out.println("我会说话!");
    }
    
    public static void main(String[] args) {
        ThisDemo thisDemo=new ThisDemo("张三",23,"男");
        System.out.println(thisDemo.toString());
    }

}

   注意:this只能在类中的非静态方法中使用,静态方法和静态的代码块中绝对不能出现this

   2.关键字super

  • 在子类构造方法中要调用父类的构造方法,用“super(参数列表)”的方式调用,参数不是必须的,该语句只能用在子类构造方法体中的第一行
  • 当子类方法中的局部变量或者子类的成员变量与父类成员变量同名时,可以用“super.成员变量名”来引用父类成员变量
  • 当子类的成员方法覆盖了父类的成员方法时,可以用“super.方法名(参数列表)”的方式访问父类的方法
  • 在子类构造方法中用“super(参数列表)”的方式调用父类的构造方法时,在构造方法内,“this(形参列表)”或“super(形参列表)”只能出现一个!
package com.keyword;

public class SuperDemo {
    public static void main(String[] args) {
        Student student = new Student("李四", 23, "女", "223311");
        student.sayWord();
    }
}

class Person {
    private String name;
    private Integer age;
    private String sex;

    public Person() {
        System.out.println("父类无参的构造方法!");
    }

    public Person(String name, Integer age, String sex) {
        this();// 调用本类重载的构造方法
        this.name = name;
        this.age = age;
        this.sex = sex;
        System.out.println("父类有参的构造方法!");
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Integer getAge() {
        return age;
    }

    public void setAge(Integer age) {
        this.age = age;
    }

    public String getSex() {
        return sex;
    }

    public void setSex(String sex) {
        this.sex = sex;
    }

    public void sayWord() {
        System.out.println("我是父类,人都会说话!");
    }
}

class Student extends Person {
    private String cno;

    public Student(String name, int age, String sex, String cno) {
        // 调用父类构造器
        super(name, age, sex);
        this.cno = cno;
    }

    public String getCno() {
        return cno;
    }

    public void setCno(String cno) {
        this.cno = cno;
    }

    public void sayWord() {
        // 调用父类方法
        super.sayWord();
        System.out.println("我是子类,我也会说话!");
        super.setName("本来叫李四,改名叫张三");
        // 调用父类获取属性方法
        System.out.println(super.getName());
    }

}

 

上一篇:Scala--构造器


下一篇:减少交通堵塞及事故 传感器助阵美国智能公路建设