Java中的匿名对象

//Java中的匿名对象:
//匿名对象就是没有名字的对象
class Student{
	public void tell(){
		System.out.println("Hello World");
	}
}
public class HelloWorld {
	public static void main(String[] args){
		//Student stu = new Student();
		//stu.tell();
		//匿名对象
		//对象只被使用一次就可以用匿名对象的特性
		new Student().tell();
	}
}
	

上一篇:NLPer的福利,CCKS数据集大放送


下一篇:技术解码 | 从芯片到云全链路高效设计 一文了解YoC基础软件平台