就是没有名字的对象,是对象的一种简化表示形式
匿名对象使用的两种情况:
- 对象调用方法仅仅一次的时候
//正常写法
Student s = new Student();
s.age=23;
//匿名写法
new Student().age = 23;
- 作为实际参数传递
System.out.println("一共有"+new Student().num + "个学生");
就是没有名字的对象,是对象的一种简化表示形式
匿名对象使用的两种情况:
//正常写法
Student s = new Student();
s.age=23;
//匿名写法
new Student().age = 23;
System.out.println("一共有"+new Student().num + "个学生");
本文标题:匿名对象
本文链接:https://www.haomeiwen.com/subject/eistottx.html
网友评论