JavaPatternMatching/notizen/stan/lambdaBytecode/Lambda4.java

9 lines
133 B
Java
Raw Normal View History

2015-09-22 16:43:36 +00:00
interface Test{
Integer test(Integer i);
}
class Lambda4{
Test methode(){
return (i)->{System.out.println(this); return i;};
}
}