Supplier get method gets a result.
get
has the following syntax.
T get()
The following example shows how to use get
.
import java.util.function.Supplier; /* w w w . j a v a 2s . c o m*/ public class Main { public static void main(String[] args) { Supplier<String> i = ()-> "java2s.com"; System.out.println(i.get()); } }
The code above generates the following result.