1.匿名对象:
    三、匿名对象的使用
    1.理解:我们创建的对象,没显式的赋给一个变量名。即为匿名对象
    2.特征:匿名对象只能调用一次。
    3.使用:如下
    */
    public class InstanceTest {
    public static void main(String[] args) {
    phone p = new phone();
    p.call();
    //匿名对象
    new phone().call();
    new phone().email();
    }
    }
    class phone{
    int m = 4;
    public void call(){
    System.out.println(m);
    }
    public void email(){
    System.out.println(“可以发邮件”);
    }
    }

    应用场景:(开发中)
    mall.show(new Phone());
    public void show(Phone phone){
    phone.sendEmail();
    phone.playGame();
    }
    }