February 2013
Intermediate to advanced
672 pages
16h 2m
English
A block is a sequence of statements, local class declarations, and local variable declaration statements within braces.
Block: { BlockStatementsopt }BlockStatements: BlockStatement BlockStatements BlockStatementBlockStatement: LocalVariableDeclarationStatement ClassDeclaration Statement
A block is executed by executing each of the local variable declaration statements and other statements in order from first to last (left to right). If all of these block statements complete normally, then the block completes normally. If any of these block statements complete abruptly for any reason, then the block completes abruptly for the same reason.
Read now
Unlock full access