Object Oriented Software Engineering   View all facts   Glossary   Help
subject > programming language construct > block > Java block > Java nested block
Next Java blockJava else block    UpJava block

Java nested block
subjectfact 
Java nested blockis a subtopic of Programming Style Guidelines2001-08-30 14:56:16.0
is a kind of Java block2001-08-30 14:56:16.0
should be indented carefully2001-08-30 14:56:17.0
Java blockcontains several statements surrounded by braces2001-08-30 14:56:09.0
has example
{
a =5;
b = computeSomething;
}
2001-08-30 14:56:09.0
has layout example style preferred by Sun:
if(condition) {
// statements
}
2001-08-30 14:56:09.0
has layout example style preferred by the authors:
if(condition)
{
// statements
}
2001-08-30 14:56:09.0
is used as the body of classes, loops, conditional statements and for exception handling2001-08-30 14:56:09.0