应用场景:
PhoneMall mall = new PhoneMall();
//匿名对象的使用
mall.show(new Phone());
其中
class PhoneMall{
public void show(Phone phone){
phone.sendEmail();
phone.playGame();
}
}
暂无评论
应用场景:
PhoneMall mall = new PhoneMall();
//匿名对象的使用
mall.show(new Phone());
其中
class PhoneMall{
public void show(Phone phone){
phone.sendEmail();
phone.playGame();
}
}