this关键字的用法

this关键字的用法

public class TestThis{
TestThis(){
System.out.println(this);
}
public static void main (String[] args){
TestThis tt = new TestThis();}
}//教材中有两个错误,一个是第三行没有分号,另一个是第六行的public首字母大写了,应注意
TestThis@15db9742//看不懂,晕@~@
public class TestThis{
TestThis(){
System.out.println(this);
}
void show() {
System.out.println(this);
}
public static void main (String[] args){
TestThis tt = new TestThis();
tt.show();
System.out.println(tt);}
}//测试代码块2.0
TestThis@15db9742
TestThis@15db9742
TestThis@15db9742//结果所示
public class TestThis{
String name;int age;
TestThis(){
System.out.println(this);
}
TestThis(String name,int age) {this.name = name;this.age = age;}
void show() {
System.out.println(this);
}
void show1() {System.out.println(name+" "+age);}
public static void main (String[] args){
TestThis tt = new TestThis();
tt.show();
System.out.println(tt);
TestThis tt1 = new TestThis("艾本",18);
tt1.show1();}
}//测试3.0
TestThis@15db9742
TestThis@15db9742
TestThis@15db9742
艾本 18//结果所示
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值