📜  java代码示例中的方法引用

📅  最后修改于: 2022-03-11 14:52:34.690000             🧑  作者: Mango

代码示例1
Java provides a feature called method
reference in Java 8. Method reference 
is used to refer method of functional interface.
  It is compact and easy form
  of lambda expression. Each time when 
  you are using lambda expression to just
  referring a method, you can replace your
  lambda expression with method reference.

Types of Method References:
- Reference to a static method.  Syntax ==> ContainingClass::staticMethodName  
- Reference to an instance method.  Syntax ==> containingObject::instanceMethodName  
- Reference to a constructor.  Syntax ==> ClassName::new