Programming Reference/Librarys
Question & Answer
Q&A is closed
define a block for local variables
/** * Block for local variables */ { int help=5; System.out.println(help); } // block content is now trashed // System.out.println(help); // not possible to access the help variable
5