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

Java else block
subjectfact 
Java else blockcan be omitted if there is nothing to do in the false caselink: chapter2section2.8.html#727, 2001-08-30 14:56:13.0
is a subtopic of The Basics of Java2001-08-30 14:56:13.0
is part of Java if statement2001-08-30 14:56:13.0
is a kind of Java block2001-08-30 14:56:13.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