教妹学 Java(二十 七):this 关键字的用法
int age;
WithoutThisStudent(String name, int age) {
name = name;
age = age;
}
void out() {
System.out.println(name+" " + age);
}
public static void main(String[] args) {
WithoutThisStudent s1 = new WithoutThisStudent("沉默王二", 18);
WithoutThisStudent s2 = new WithoutThisStudent("沉默王三", 16);
s1.out();
s2.out();
}
}
在上面的例子中,构造方法的参数名和实例变量名相同,由于没有使用 this 关键字,所以无法为实例变量赋值。程序输出的结果如下所示:
null 0
null 0
从结果中可以看得出来,尽管创建对象的时候传递了参数,但实例变量并没有赋值。这是因为如果构造方法中没有使用 this 关键字的话,name 和 age 指向的并不是实例变量而是参数。
怎么解决这个问题呢?加上 this 关键字就好了。
/**
@author 微信搜「沉默王二」,回复关键字 PDF
*/
public class WithThisStudent {
String name;
int age;
WithThisStudent(String name, int age) {
this.name = name;
this.age = age;
}
void out() {
System.out.println(name+" " + age);
}
public static void main(String[] args) {
WithThisStudent s1 = new WithThisStudent("沉默王二", 18);
WithThisStudent s2 = new WithThisStudent("沉默王三", 16);
s1.out();
s2.out();
}
}
再来看一下程序的输出结果:
沉默王二 18
沉默王三 16
当然了,如果参数名和实例变量名不同的话,就不必使用 this 关键字,但我建议使用 this 关键字,这样的代码更有意义。
03、调用当前类的方法
我们可以在一个类中使用 this 关键字来调用另外一个方法,如果没有使用的话,编译器会自动帮我们加上。
/**
@author 微信搜「沉默王二」,回复关键字 PDF
*/
public class InvokeCurrentClassMethod {
void method1() {}
void method2() {
method1();
}
public static void main(String[] args) {
new InvokeCurrentClassMethod().method1();
}
}
在源代码中,method2()
在调用 method1()
的时候并没有使用 this 关键字,但通过反编译后的字节码可以看得到。
public class InvokeCurrentClassMethod {
public InvokeCurrentClassMethod() {
}
void method1() {
}
void method2() {
this.method1();
}
public static void main(String[] args) {
(new InvokeCurrentClassMethod()).method1();
}
}
这次看到了吧?
04、调用当前类的构造方法
this()
可用于调用当前类的构造方法——构造方法可以重用了。
/**
@author 微信搜「沉默王二」,回复关键字 PDF
*/
public class InvokeConstrutor {
InvokeConstrutor() {
System.out.println("hello");
}
InvokeConstrutor(int count) {
this();
System.out.println(count);
}
public static void main(String[] args) {
InvokeConstrutor invokeConstrutor = new InvokeConstrutor(10);
}
}
在有参构造方法 InvokeConstrutor(int count)
中,使用了 this()
来调用无参构造方法 InvokeConstrutor()
。来看一下输出结果:
hello
10
果然,无参构造方法也被调用了,所以输出了“hello”。
也可以在无参构造方法中使用 this()
并传递参数来调用有参构造方法,来看下面这段代码:
/**
@author 微信搜「沉默王二」,回复关键字 PDF
*/
public class InvokeParamConstrutor {
InvokeParamConstrutor() {
this(10);
System.out.println("hello");
}
InvokeParamConstrutor(int count) {
System.out.println(count);
}
public static void main(String[] args) {
InvokeParamConstrutor invokeConstrutor = new InvokeParamConstrutor();
}
}
来看一下程序的输出结果。
10
hello
注意,this()
必须放在构造方法的第一行,否则就报错了,见下图。
05、作为参数在方法中传递
this
关键字可以作为参数在方法中传递,它指向的是当前类的对象。
/**
@author 微信搜「沉默王二」,回复关键字 PDF
*/
public class ThisAsParam {
void method1(ThisAsParam p) {
System.out.println(p);
}
void method2() {
method1(this);
}
public static void main(String[] args) {
ThisAsParam thisAsParam = new ThisAsParam();
System.out.println(thisAsParam);
thisAsParam.method2();
}
}
来看一下输出结果:
com.itwanger.twentyseven.ThisAsParam@77459877
com.itwanger.twentyseven.ThisAsParam@77459877
method2()
调用了 method1()
,并传递了参数 this,method1()
中打印了当前对象的字符串。 main()
方法中打印了 thisAsParam 对象的字符串。从输出结果中可以看得出来,两者是同一个对象。
06、作为参数在构造方法中传递
this
关键字也可以作为参数在构造方法中传递,它指向的是当前类的对象。当我们需要在多个类中使用一个对象的时候,这非常有用。
/**
@author 微信搜「沉默王二」,回复关键字 PDF
*/
public class ThisAsConstrutorParam {
int count = 10;
ThisAsConstrutorParam() {
Data data = new Data(this);
data.out();
}
public static void main(String[] args) {
new ThisAsConstrutorParam();
}
}
评论