Java技术栈
www.javastack.cn
关注阅读更多优质文章
Hello World 的两种奇怪写法:
public static void main(String[] args) {
PrintStream printStream = new PrintStream(System.out);
printStream.println("Hello World");
Consumer fun = System.out::println;
fun.accept("hello world");
}
这么写不怕领导开除你吗?