java method < > code example
Example 1: java method reference
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
Example 2: method in java
Method is a collection of statements
which returns a value upon its execution
Method have a return and the method's name may or not be same as the class
name.
Method is invoked explicitly.
Method is not provided by compiler in any case.
Methods are inherited by child classes.