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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

1.this&super

什么是this,this是自身的一个对象,代表对象本身,可以理解为:指向对象本身的一个指针。当你想要引用当前对象的某种东西,比如当前对象的某个方法,或当前对象的某个成员,你便可以利用this来实现这个目的。要注意的是this只能在类中的非静态方法中使用,静态方法和静态的代码块中绝对不能出现this。his也可作为构造函数来使用。在后面可以看到

而什么是super,可以理解为是指向自己超(父)类对象的一个指针,而这个超类指的是离自己最近的一个父类。super的作用同样是可以作为构造函数使用,或者是获取被局部变量屏蔽掉的父类对象的某个同名变量的值。

2.作为构造函数使用
super(参数):调用父类中的某一个构造函数(应该为构造函数中的第一条语句)。
this(参数):调用本类中另一种形式的构造函数(应该为构造函数中的第一条语句)。

要记住的几个关键点是:在构造方法中this与super不能共存;其次有this或super出现的地方必须是构造方法的第1句;静态方法,也就是类方法中不能有this和super关键字。
经典的例子
  1. class Person {  
  2.     public static void prt(String s) {  
  3.        System.out.println(s);  
  4.     }  
  5.   
  6.     Person() {  
  7.        prt("A Person.");  
  8.     }//构造方法(1)  
  9.    
  10.     Person(String name) {  
  11.        prt("A person name is:" + name);  
  12.     }//构造方法(2)  
  13. }  
  14.    
  15. public class Chinese extends Person {  
  16.     Chinese() {  
  17.        super(); // 调用父类构造方法(1)  
  18.        prt("A chinese.");// (4)  
  19.     }  
  20.    
  21.     Chinese(String name) {  
  22.        super(name);// 调用父类具有相同形参的构造方法(2)  
  23.        prt("his name is:" + name);  
  24.     }  
  25.    
  26.     Chinese(String name, int age) {  
  27.        this(name);// 调用具有相同形参的构造方法(3)  
  28.        prt("his age is:" + age);  
  29.     }  
  30.    
  31.     public static void main(String[] args) {  
  32.        Chinese cn = new Chinese();  
  33.        cn = new Chinese("kevin");  
  34.        cn = new Chinese("kevin", 22);  
  35.     }  
  36. }  
复制代码


执行结果为:  
A Person.  
A chinese.  
A person name is:kevin  
his name is:kevin  
A person name is:kevin  
his name is:kevin  
his age is:22  

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马