fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6. import java.util.function.*;
  7.  
  8. /* Name of the class has to be "Main" only if the class is public. */
  9. class Ideone
  10. {
  11. public static Function<Integer, Integer> make_lambda() {
  12. int n = 0;
  13. return a -> n += a;
  14. }
  15. public static void main (String[] args) throws java.lang.Exception
  16. {
  17. Function<Integer, Integer>
  18. fn1 = make_lambda(),
  19. fn2 = make_lambda();
  20. System.out.println(fn1.apply(2));
  21. System.out.println(fn2.apply(3));
  22. }
  23. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:13: error: local variables referenced from a lambda expression must be final or effectively final
		return a -> n += a;
		            ^
1 error
stdout
Standard output is empty