This的使用

package testthis;

public class TestThis1 {
int a,b;
TestThis1(int a,int b){
this.a=a;
this.b=b;
System.out.println("a的值分别为:"+a);
System.out.println("b的值分别为:"+b);
}

void sing(){
}
void eat(){
this.sing();
System.out.println("你妈妈叫你回家吃饭");
}

public static void main(String[] args){
TestThis1 s1=new TestThis1(1,2);
s1.eat();
}
}

 

posted @ 2019-05-22 20:45  石丶先森q  阅读(126)  评论(0编辑  收藏  举报