天天看点

《Thinking In Java》- 读书笔记<一>

第二章 一切皆为对象

 1.一般类、对象、或是字段定义注释为:

example:

/**
	 * This is test method
	 */
	public void Test(){
		
	}
           

 2.HTML 注释

 3.引用其他类

@see

example:

/**
	 * @see 类名
	 */
	public void Test(String str){
		
	}
           

 4.类、方法文档标记

@version  版本

@author   作者

@return 、@param