随笔 - 170  文章 - 0  评论 - 0  阅读 - 13万

java面向对象-------this的使用

package java面向对象;

/*
this关键字的使用,this表示当前创建好的对象
*/

public class TestThis {

int a,b,c;
public TestThis(int a,int b){
//1、通过this来区分局部变量和成员变量
this.a=a;
this.b=b;
}
public TestThis(int a,int b,int c){
//2、通过this调用上面的构造方法,必须放在第一句
//3、this不能在static静态方法中使用
this(a,b);
this.c=c;
}
void sing(){

}
void eat(){
this.sing();//调用本类中sing(),可以不写this
System.out.println("哈哈哈");
}
public static void main(String[] args) {
TestThis tt=new TestThis(20,30);
tt.eat();
}
}

posted on   zz测试笔记  阅读(377)  评论(0编辑  收藏  举报
< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

点击右上角即可分享
微信分享提示