格式 ClassName::new

举例

Function <Integer,MyClass> fun= n->new MyClass(n);

等同于

Function<Integer,MyClass> fun=MyClass::new;