documentation3.java

来自「java编程思想第四版习题答案」· Java 代码 · 共 24 行

JAVA
24
字号
// object.Documentation1.java
// TIJ4 Chapter Object, Exercise 13 - 3
/* Run Documentation1.java, Documentation2.java and Documentation3.java
* through Javadoc. Verify the resulting documentation with your Web browser.
*/
import java.util.*;

// object/Documentation3.java
/**
* You can even insert a list:
* <ol>
* <li> Item one
* <li> Item two
* <li> Item three
* </ol>
*/

public class Documentation3 {
	public static void main(String[] args) {
		Date d = new Date();
		System.out.println("d = " + d);
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?