注释
有三种插入注释的允许风格:
//comment on one line
/* comment on one or more line */
/** documenting comment */
紧放在声明(变量、方法或类的声明)之前的文档注释表明, 注释应该被放在自动生成的文档中(由javadoc命令生成的HTML文件)以当作对声明项的描述。
注意------有关这些注释的格式和 javadoc工具的使用,请见JDK1.2 API文件的 docs/tooldocs/win32目录
分号、块和空白
分号、块和空白-
一个语句是一行用分号(;) 终止的代码 totals=a b c d e f;- 一个块是以上括号和下括号为边界的语句集合 { x=y 1 y=x 1 }
在Java编程语言中,语句是一行由分号(.)终止的代码。
例如
totals=a b c d e f;
与下式相同
total=a b c
d e f;
一个块(block)或一个复合语句是以上括号和下括号({})为边界的语句集合;块语句也被用来组合属于某个类的语句。
分号、块和空白-
一个块可被用在一个类的定义中 public class Date { int day. int month. int year. }-块语句可被嵌套- Java程序中允许任意多的空白
语句块可被嵌套。HelloWorldApp类由main方法构成,这个方法就是一个语句块,它是一个独立单元,单元本身可作为在类HelloWorldApp块中的一组事务之一。
其它一些块语句或组的例子如下:
// a block statement
{
x = y 1.
y = x 1.
}
Semicolons, Blocks, and Whitespace
// a block used in a class definition
public class MyDate {
int day.
int month.
int year.
}
// an example of a block statement nested within
// another block statement
while ( i < large ) {
a = a i.
if ( a == max ) {
b = b a. // nested block is here
a = 0.
}
} |