Answers for "java "->""

3

java "->"

interface LambdaFunction {
    void call();
}
class FirstLambda {
    public static void main(String []args) {
        LambdaFunction lambdaFunction = () -> System.out.println("Hello world");
        lambdaFunction.call();
    }
}
Posted by: Guest on March-31-2020
1

java "->"

Runnable r = ()-> System.out.print("Run method");

// is equivalent to

Runnable r = new Runnable() {
            @Override
            public void run() {
                System.out.print("Run method");
            }
        };
Posted by: Guest on March-31-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language