Object Oriented Software Engineering   View all facts   Glossary   Help
subject > programming language construct > block > Java block
Upblock

Java block
subjectfact 
Java blockcontains several statements surrounded by braceslink: chapter2section2.8.html#548, 2001-08-30 14:56:09.0
has example
{
a =5;
b = computeSomething;
}
link: chapter2section2.8.html#551, 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 a subtopic of The Basics of Java2001-08-30 14:56:09.0
is used as the body of classes, loops, conditional statements and for exception handlinglink: chapter2section2.8.html#549, 2001-08-30 14:56:09.0
is a kind of block2001-08-30 14:56:09.0

Kinds of Java block :