84669인 학습
152542인 학습
20005인 학습
5487인 학습
7821인 학습
359900인 학습
3350인 학습
180660인 학습
48569인 학습
18603인 학습
40936인 학습
1549인 학습
1183인 학습
32909인 학습
ringa_lee
是当前对象的 getClass()方法。在当前对象内使用当前对象的方法或者属性可以忽略this,除非有参数名重复,才需要特别指定this
this
class Demo { private String id; private String name; public Demo(String id, String name){ this.id = id; // 参数与字段名重复,所以需要指定 this this.name = name; } public Demo(String username) { name = username; // 这里的name 就是当前对象的name id = getClass().toString(); // 这里的 getClass() 也是当前对象的getClass() 方法 } }
每次调用成员方法的时候都会隐式传入this对象,编译器会去给getClass()加上this
getClass()
是当前对象的 getClass()方法。
在当前对象内使用当前对象的方法或者属性可以忽略
this
,除非有参数名重复,才需要特别指定this
每次调用成员方法的时候都会隐式传入
this
对象,编译器会去给getClass()
加上this