FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

GitHub Viewer

package lambda; import java.util.function.Consumer; //Note public class LambdaLocalVariables { public static void main(String args[]) { int value = 0; Consumer consumer = ((String s) -> { System.out.println(value); //value++; error as this variables are read only and cannot be modified }); } }

Back | FazBrowse Home | New Git URL