Java this關鍵字
在java中,this
關鍵字有很多種用法。 在java中,這是一個引用當前對象的引用變量。
java this
關鍵字的用法如下:
-
this
關鍵字可用來引用當前類的實例變量。 -
this
關鍵字可用於調用當前類方法(隱式)。 -
this()
可以用來調用當前類的構造函數。 -
this
關鍵字可作爲調用方法中的參數傳遞。 -
this
關鍵字可作爲參數在構造函數調用中傳遞。 -
this
關鍵字可用於從方法返回當前類的實例。
建議:如果你是java初學者,只學習
this
關鍵字的前三個用法就可以了。
1. this:引用當前類的實例變量
this
關鍵字可以用來引用當前類的實例變量。如果實例變量和參數之間存在歧義,則 this
關鍵字可用於明確地指定類變量以解決歧義問題。
瞭解沒有 this 關鍵字的問題
下面先來理解一個不使用 this
關鍵字的示例:
class Student {
int rollno;
String name;
float fee;
Student(int rollno, String name, float fee) {
rollno = rollno;
name = name;
fee = fee;
}
void display() {
System.out.println(rollno + " " + name + " " + fee);
}
}
class TestThis1 {
public static void main(String args[]) {
Student s1 = new Student(111, "ankit", 5000f);
Student s2 = new Student(112, "sumit", 6000f);
s1.display();
s2.display();
}
}
執行上面代碼輸出結果如下 -
0 null 0.0
0 null 0.0
在上面的例子中,參數(形式參數)和實例變量(rollno
和name
)是相同的。 所以要使用this
關鍵字來區分局部變量和實例變量。
使用 this 關鍵字解決了上面的問題
class Student {
int rollno;
String name;
float fee;
Student(int rollno, String name, float fee) {
this.rollno = rollno;
this.name = name;
this.fee = fee;
}
void display() {
System.out.println(rollno + " " + name + " " + fee);
}
}
class TestThis2 {
public static void main(String args[]) {
Student s1 = new Student(111, "ankit", 5000f);
Student s2 = new Student(112, "sumit", 6000f);
s1.display();
s2.display();
}
}
執行上面代碼輸出結果如下 -
111 ankit 5000
112 sumit 6000
如果局部變量(形式參數)和實例變量不同,則不需要像下面的程序一樣使用this
關鍵字:
不需要 this 關鍵字的程序示例
class Student {
int rollno;
String name;
float fee;
Student(int r, String n, float f) {
rollno = r;
name = n;
fee = f;
}
void display() {
System.out.println(rollno + " " + name + " " + fee);
}
}
class TestThis3 {
public static void main(String args[]) {
Student s1 = new Student(111, "ankit", 5000f);
Student s2 = new Student(112, "sumit", 6000f);
s1.display();
s2.display();
}
}
執行上面代碼輸出結果如下 -
111 ankit 5000
112 sumit 6000
對變量使用有意義的名稱是一種好的編程習慣。所以使用相同名稱的實例變量和參數,並且總是使用
this
關鍵字。
2. this:調用當前類方法
可以使用this
關鍵字調用當前類的方法。如果不使用this
關鍵字,編譯器會在調用方法時自動添加此 this
關鍵字。我們來看看這個例子。
執行上面代碼輸出結果如下 -
hello n
hello m
3. this():調用當前類的構造函數
this()
構造函數調用可以用來調用當前類的構造函數。 它用於重用構造函數。 換句話說,它用於構造函數鏈接。
從參數化構造函數調用默認構造函數:
class A {
A() {
System.out.println("hello a");
}
A(int x) {
this();
System.out.println(x);
}
}
class TestThis5 {
public static void main(String args[]) {
A a = new A(10);
}
}
執行上面代碼輸出結果如下 -
hello a
10
從默認構造函數調用參數化構造函數:
class A {
A() {
this(5);
System.out.println("hello a");
}
A(int x) {
System.out.println(x);
}
}
class TestThis6 {
public static void main(String args[]) {
A a = new A();
}
}
執行上面代碼輸出結果如下 -
5
hello a
使用this()構造函數調用
this()
構造函數調用用於從構造函數重用構造函數。 它維護構造函數之間的鏈,即它用於構造函數鏈接。看看下面給出的示例,顯示this
關鍵字的實際使用。
class Student {
int rollno;
String name, course;
float fee;
Student(int rollno, String name, String course) {
this.rollno = rollno;
this.name = name;
this.course = course;
}
Student(int rollno, String name, String course, float fee) {
this(rollno, name, course);// reusing constructor
this.fee = fee;
}
void display() {
System.out.println(rollno + " " + name + " " + course + " " + fee);
}
}
class TestThis7 {
public static void main(String args[]) {
Student s1 = new Student(111, "ankit", "java");
Student s2 = new Student(112, "sumit", "java", 6000f);
s1.display();
s2.display();
}
}
執行上面代碼輸出結果如下 -
111 ankit java null
112 sumit java 6000
注意:調用
this()
必須是構造函數中的第一個語句。
下面示例爲不把 this()
語句放在第一行,因此編譯不通過。
class Student {
int rollno;
String name, course;
float fee;
Student(int rollno, String name, String course) {
this.rollno = rollno;
this.name = name;
this.course = course;
}
Student(int rollno, String name, String course, float fee) {
this.fee = fee;
this(rollno, name, course);// C.T.Error
}
void display() {
System.out.println(rollno + " " + name + " " + course + " " + fee);
}
}
class TestThis8 {
public static void main(String args[]) {
Student s1 = new Student(111, "ankit", "java");
Student s2 = new Student(112, "sumit", "java", 6000f);
s1.display();
s2.display();
}
}
執行上面代碼輸出結果如下 -
Compile Time Error: Call to this must be first statement in constructor
4. this:作爲參數傳遞給方法
this
關鍵字也可以作爲方法中的參數傳遞。 它主要用於事件處理。 看看下面的一個例子:
class S2 {
void m(S2 obj) {
System.out.println("method is invoked");
}
void p() {
m(this);
}
public static void main(String args[]) {
S2 s1 = new S2();
s1.p();
}
}
執行上面代碼輸出結果如下 -
method is invoked
這個應用程序可以作爲參數傳遞:
在事件處理(或)的情況下,必須提供一個類的引用到另一個。 它用於在多個方法中重用一個對象。
this:在構造函數調用中作爲參數傳遞
也可以在構造函數中傳遞this
關鍵字。 如果必須在多個類中使用一個對象,可以使用這種方式。 看看下面的一個例子:
class B {
A4 obj;
B(A4 obj) {
this.obj = obj;
}
void display() {
System.out.println(obj.data);// using data member of A4 class
}
}
class A4 {
int data = 10;
A4() {
B b = new B(this);
b.display();
}
public static void main(String args[]) {
A4 a = new A4();
}
}
執行上面代碼輸出結果如下 -
10
6. this關鍵字用來返回當前類的實例
可以從方法中 this
關鍵字作爲語句返回。 在這種情況下,方法的返回類型必須是類類型(非原始)。 看看下面的一個例子:
作爲語句返回的語法
return_type method_name(){
return this;
}
從方法中返回爲語句的 this 關鍵字的示例
class A {
A getA() {
return this;
}
void msg() {
System.out.println("Hello java");
}
}
class Test1 {
public static void main(String args[]) {
new A().getA().msg();
}
}
執行上面代碼輸出結果如下 -
Hello java
驗證 this 關鍵字
現在來驗證 this
關鍵字引用當前類的實例變量。 在這個程序中將打印參考變量,這兩個變量的輸出是相同的。
class A5 {
void m() {
System.out.println(this);// prints same reference ID
}
public static void main(String args[]) {
A5 obj = new A5();
System.out.println(obj);// prints the reference ID
obj.m();
}
}
執行上面代碼輸出結果如下 -
A5@22b3ea59
A5@22b3ea59