Guest User

Untitled

a guest
Oct 22nd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. //object methodReference
  2. System.out::println;
  3.  
  4. //Class::staticReference
  5. Math::max // static reference
  6. (x,y) -> Math.max(x,y);
  7.  
  8. //Class::instanceMethod
  9. String::length // class instant method
  10. x -> x.length() // lambda
Add Comment
Please, Sign In to add comment