以下代码
Supplier<String> newString = String::new;
System.out.println(newString.get());
// prints an empty string (nothing) to the console and then a newline character
以及 Supplier 获取方法的定义
T get()
get 方法应该返回 T,但是构造函数没有返回类型,那么为什么 String::new 可以分配给 Supplier <String>?