美文网首页
匿名对象

匿名对象

作者: perfect_jimmy | 来源:发表于2017-03-23 17:58 被阅读4次

    就是没有名字的对象,是对象的一种简化表示形式

    匿名对象使用的两种情况:

    • 对象调用方法仅仅一次的时候
      //正常写法
        Student s = new Student();
        s.age=23;
        //匿名写法
        new Student().age = 23;
    
    • 作为实际参数传递
    System.out.println("一共有"+new Student().num + "个学生");
    

    相关文章

      网友评论

          本文标题:匿名对象

          本文链接:https://www.haomeiwen.com/subject/eistottx.html