Java-this
Posted ddpapa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java-this相关的知识,希望对你有一定的参考价值。
- 当方法中的参数和类中变量重名时,使用 this.变量 调用成员变量。
public class test1 { String name; int age; public void te(String name, int age) { this.name = name; System.out.println(age); } public static void main(String[] args) { test1 a = new test1(); a.te("heel", 50); System.out.println(a.name); System.out.println(a.age); } }
此处this指当前对象,运行结果:
- 使用this调用本类中的其他方法,格式:this.方法名(参数)
public class test1 { public void first() { System.out.println("first"); } public void second() { this.first(); //second方法调用first方法 System.out.println("second"); } }
- this调用本类中的构造方法,格式:this(参数)
public class test1 { public test1(String name){ } public test1(String a,int b) { this(a); //根据参数个数来调用本类中的构造方法 } }
- 使用return this返回当前实例化对象
以上是关于Java-this的主要内容,如果未能解决你的问题,请参考以下文章