标签:单行注释 void stat print 生成 换行符 first 单行 str
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.一般是编辑器自动生成的
CoreJavaE10V1P3.2 第3章 Java的基本编程结构-3.2 注释
标签:单行注释 void stat print 生成 换行符 first 单行 str
原文地址:http://www.cnblogs.com/imyier/p/6275418.html