避免内部类定义过多
public class hh {
public static void main(String[]args)
{
new Thread(()->{
for(int i=0;i<5;i++)
{
System.out.println("me");
}
}).start();
new Thread(()->System.out.println("he")).start();
}
}
原文地址:https://blog.51cto.com/14437184/2427439
时间: 2024-10-20 01:16:30