标签:使用 就是 你好 alt 开发 参数 com width sys
1、当成员变量和局部变量重名时,在方法中使用this时,表示的是该方法所在类中的成员变量。(this是当前对象自己)
例如:
1 public class Hello { 2 String str = "你好"; 3 4 public Hello(String str) { 5 System.out.println("str = " + str); 6 System.out.println("参数赋值给成员变量前this.str = " + this.str); 7 this.str = str;//把参数值赋给成员变量,成员变量的值改变 8 System.out.println("参数赋值给成员变量后this.str = " + this.str); 9 } 10 11 public static void main(String[] args) { 12 Hello hello = new Hello("大家好"); 13 System.out.println("str = " + hello.str);//验证成员变量值的改变 14 } 15 }
运行结果:
在这个例子中,构造函数Hello中,参数str与类Hello的成员变量str同名,这时如果直接对str进行操作则是对参数str进行操作。若要对类Hello的成员变量str进行操作就应该用this进行引用。运行结果的第一行就是直接对构造函数中传递过来的参数str进行打印结果; 第二行是对成员变量str的打印;第三行是先对成员变量str赋传过来的参数str值后再打印,所以结果是大家好,而第四行是主函数中直接打印类中的成员变量的值,这种用法是开发中最常见的情况,在生成表的实体类DTO中会经常看到。
标签:使用 就是 你好 alt 开发 参数 com width sys
原文地址:https://www.cnblogs.com/1012hq/p/11202562.html