Java中this和super的用法和区别

时间:2023-03-08 19:58:11
super(参数):调用父类中的某一个构造函数(应该为构造函数中的第一条语句)。
this(参数):调用本类中另一种形式的构造函数(应该为构造函数中的第一条语句)。
this的实例:
 package com.demo;

 public class Person {
private int age=10;
public Person() {
System.out.println("初始化年龄:"+age);
}
public int GetAge(int age){
//形参与成员名字重名,用this来区分
this.age=age;
return this.age;
} } package com.demo; public class Test {
public static void main(String[] args) {
Person per=new Person();
System.out.println("姓名"+per.GetAge(12));
}
}

显示结果:

初始化年龄:10
姓名12

super的实例:

 package com.gouzao1.demo;
//父类
public class Country {
String name;
void value(){
name="China"; }
}
 package com.gouzao1.demo;

 public class City extends Country{
String name;
void value(){
name="ShangHai";
super.value();//调用父类的方法
System.out.println(name);
System.out.println(super.name);
}
}

测试:

 package com.gouzao1.demo;

 public class TestCity {
public static void main(String[] args) {
City c=new City();
c.value();
}
}

显示结果:

ShangHai
China