silver-mx
1/5/2019 - 11:16 PM

Method references

Method references


See https://docs.oracle.com/javase/tutorial/java/javaOO/methodreferences.html

Kind of method references

Reference to a static method	=> ContainingClass::staticMethodName
Reference to an instance method of a particular object =>	containingObject::instanceMethodName
Reference to an instance method of an arbitrary object of a particular type =>	ContainingType::methodName
Reference to a constructor =>	ClassName::new