Advertisement
Guest User

Untitled

a guest
Aug 31st, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. import java.util.function.*;
  2.  
  3. public class Test {
  4. private final String s;
  5.  
  6. public Test(String s) {
  7. this.s = s;
  8. }
  9.  
  10. public Consumer<String> c = (x) -> System.out.println(x + "/" + this.s);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement