摘要: 1,当局部变量和成员变量重名的时候,在方法中使用this表示成员变量以示区分。 class Demo{ String str = "这是成员变量"; void fun(String str){ System.out.println(str); System.out.println(this.str); this.str = str; ... 阅读全文
posted @ 2015-09-19 15:38 yefengyu 阅读(68903) 评论(7) 推荐(13) 编辑