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();
}
}