, for-. JLS 14.14.1.
BasicForStatement:
for ( ForInitopt ; Expressionopt ; ForUpdateopt ) Statement
...
Statement:
StatementWithoutTrailingSubstatement
...
StatementWithoutTrailingSubstatement:
Block
EmptyStatement
ExpressionStatement
...
Block:
{ BlockStatementsopt }
BlockStatements:
BlockStatement
BlockStatements BlockStatement
BlockStatement:
LocalVariableDeclarationStatement
ClassDeclaration
Statement
, , (, ). , , , . , for. :
public void someMethod() {
{
List<String> myList = new ArrayList<String>();
System.out.println(myList);
}
System.out.println(myList.size());
}
, , . , , , ( , , ).