匿名对象
-----------siwuxie095
匿名对象就是没有名字的对象,如果程序中只是用一次该对象,
就可以使用匿名对象的方式
好处:「涉及到GC(即垃圾回收 Garbage Collection)」
代码:
package com.siwuxie095.classdemo;
class Student{ public void tell() { System.out.println("hello siwuxie095"); }
}
public class ClassDemo03 {
public static void main(String[] args) { //匿名对象 //不用再去声明对象,被省略 //注意:只限使用一次,如果使用多次还不如声明对象 new Student().tell(); }
} |
运行一览:
【made by siwuxie095】
posted on 2017-03-16 16:36 siwuxie095 阅读(130) 评论(0) 编辑 收藏 举报