
3.2 注释
1. //形式注释
System.out.println("We will not use 'Hello, World!'"); // is this too cute?
1.以//开始,以换行符结束
2.用于单行注释
2. /* */形式注释
1.以/*开始 以*/结束
2.用于多行注释
3.不可嵌套使用
3./** */形式注释
/**
* This is the first sample program in Core Java Chapter 3
* @version 1.01 1997-03-22
* @author Gary Cornell
*/
public class FirstSample
{
public static void main(String[] args)
{
System.out.println("We will not use 'Hello, World!'");
}
}
1.一般是编辑器自动生成的