浅析Java ClassName.this中类名.this关键字的理解
程序员文章站
2024-03-11 11:28:31
一、this关键字主要有三个应用:
(1)this调用本类中的属性,也就是类中的成员变量;
(2)this调用本类中的其他方法;
(3)this调用本类中的其他构造方...
一、this关键字主要有三个应用:
(1)this调用本类中的属性,也就是类中的成员变量;
(2)this调用本类中的其他方法;
(3)this调用本类中的其他构造方法,调用时要放在构造方法的首行。
关键字this用于指代当前的对象。因此,类内部可以使用this作为前缀引用实例成员;
this()代表了调用另一个构造函数,至于调用哪个构造函数根据参数表确定。this()调用只能出现在构造函数的第一行。
当在内部类中使用关键字this,指的就是内部类的对象, 为了访问外层类对象,就可以使用外层类名.this来访问,一般也只在这种情况下使用这种
示例代码:
public class activity extends activity { public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); /* 设置显示main.xml布局 */ setcontentview(r.layout.main); /* findviewbyid(r.id.button)取得布局main.xml中的button */ button button = (button) findviewbyid(r.id.button); /* 监听button的事件信息 */ button.setonclicklistener(new button.onclicklistener() { public void onclick(view v) { /* 新建一个intent对象 */ intent intent = new intent(); /* 指定intent要启动的类 */ intent.setclass(activity.this</span>, activity.class); /* 启动一个新的activity */ startactivity(intent); /* 关闭当前的activity */ activity.this.finish(); } }); } }
以上所述是小编给大家介绍的java关键字 classname.this中类名.this的理解的相关介绍,希望对大家有所帮助!
上一篇: LeetCode134加油站
下一篇: LeetCode134 加油站(贪心)