码迷,mamicode.com
首页 > 编程语言 > 详细

Java——【关键字】"this"的作用

时间:2020-07-19 11:45:12      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:dem   person   参数   格式   color   span   this   成员变量   自己的   

/*
当方法的局部变量和类的成员变量重名的时候,根据“就近原则”,优先使用局部变量。
如果需要访问本类当中的成员变量,需要使用格式:
this.成员变量名

“通过谁调用的方法,谁就是this。”
 */
 1 public class Person {
 2 
 3     String name; // 我自己的名字
 4 
 5     // 参数name是对方的名字
 6     // 成员变量name是自己的名字
 7     public void sayHello(String name) {
 8         System.out.println(name + ",你好。我是" + this.name);
 9         System.out.println(this);
10     }
11 
12 }
 1 public class Demo01Person {
 2 
 3     public static void main(String[] args) {
 4         Person person = new Person();
 5         // 设置我自己的名字
 6         person.name = "王健林";
 7         person.sayHello("王思聪");
 8 
 9         System.out.println(person); // 地址值
10     }
11 
12 }

 

Java——【关键字】"this"的作用

标签:dem   person   参数   格式   color   span   this   成员变量   自己的   

原文地址:https://www.cnblogs.com/zeon/p/13338700.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!