Javadoc 使用詳解

很多程序對Javadoc都不重視,認識不到Javadoc的作用,很多人都是這樣認為的:“我只要寫好功能就夠了,寫Javadoc太浪費時間,也沒啥作用,還不如用寫Javadoc的時間再多些個功能呢!”,我們知道注釋是為了解釋代碼的作用的,是為了將來給自己或者別人快速了解代碼的,在方法內一般用行注釋//的比較多,是針對一小塊代碼做出解釋的,而Javadoc的作用是針對整個方法或者整個類做一個簡要的概述的,使得別人不通過看具體方法代碼就能知道某個方法或者某個類的作用和功能。寫了Javadoc的在別人使用到類時,將鼠標懸停到類上或者方法上,javadoc會以提示信息顯示出來,這樣開發者在跳進源代碼中就能知道類或者方法的作用。說到這里可能還是有很多人不能認同這種觀點,還是認識不到Javadoc的作用。我們看一下Spring框架,隨便打開一個文件可以看到一般注釋內容都要比代碼量多,有的時候注釋量占整個文件內容的2/3。有人還是認為Spring是大框架,每個Java項目都在用他們寫的好事應該的,我們公司自己的項目就我們公司幾個人看,沒必要花時間去寫多余的Javadoc,那你是不是該這么認為了Spring大廠中的頂尖大牛都這么做,我們小菜鳥是不是對自己要求更嚴格一些,向大牛去學習呢?!假如在公司A程序員寫了Javadoc,B程序員只寫功能不寫Javadoc不寫注釋,那么一般會認為A程序員會比B程序員做的好。認識不到Javadoc的作用就像認識不到設計模式的作用一樣,很多人都認識不到設計模式的作用,認為將簡單問題復雜化,你看一下每個大框架都會用到多種設計模式,如果只知道寫增刪改查,再工作幾年仍然不會有提高。
一:簡介
Javadoc用于描述類或者方法的作用。Javadoc可以寫在類上面和方法上面。
二:寫在類上面的Javadoc
寫在類上的文檔標注一般分為三段:

第一段:概要描述,通常用一句或者一段話簡要描述該類的作用,以英文句號作為結束
第二段:詳細描述,通常用一段或者多段話來詳細描述該類的作用,一般每段話都以英文句號作為結束
第三段:文檔標注,用于標注作者、創建時間、參閱類等信息
第一段:概要描述
單行示例:

package org.springframework.util;
/*** Miscellaneous {@link String} utility methods.* */
public abstract class StringUtils {

多行示例:

package java.lang;/*** Class {@code Object} is the root of the class hierarchy.* Every class has {@code Object} as a superclass. All objects,* including arrays, implement the methods of this class.*/
public class Object {}

在注釋中出現以@開頭東東被稱之為Javadoc文檔標記,是JDK定義好的,如@author、@version、@since、@see、@link、@code、@param、@return、@exception、@throws等。

  1. @link:{@link 包名.類名#方法名(參數類型)} 用于快速鏈接到相關代碼
    @link的使用語法{@link 包名.類名#方法名(參數類型)},其中當包名在當前類中已經導入了包名可以省略,可以只是一個類名,也可以是僅僅是一個方法名,也可以是類名.方法名,使用此文檔標記的類或者方法,可用通過按住Ctrl鍵+單擊 可以快速跳到相應的類或者方法上,解析成html其實就是使用< code> 包名.類名#方法名(參數類型)< /code>

@link示例

// 完全限定的類名
{@link java.lang.Character}// 省略包名
{@link String}// 省略類名,表示指向當前的某個方法
{@link #length()}// 包名.類名.方法名(參數類型)
{@link java.lang.String#charAt(int)}
  1. @code: {@code text} 將文本標記為code
    {@code text} 會被解析成 text
    將文本標記為代碼樣式的文本,在code內部可以使用 < 、> 等不會被解釋成html標簽, code標簽有自己的樣式

一般在Javadoc中只要涉及到類名或者方法名,都需要使用@code進行標記。

第二段:詳細描述
詳細描述一般用一段或者幾個鍛煉來詳細描述類的作用,詳細描述中可以使用html標簽,如

、、
  • 等標簽, 通常詳細描述都以段落p標簽開始。
    詳細描述和概要描述中間通常有一個空行來分割

package org.springframework.util;/*** Miscellaneous {@link String} utility methods.** <p>Mainly for internal use within the framework; consider* <a href="http://commons.apache.org/proper/commons-lang/">Apache's Commons Lang</a>* for a more comprehensive suite of {@code String} utilities.** <p>This class delivers some simple functionality that should really be* provided by the core Java {@link String} and {@link StringBuilder}* classes. It also provides easy-to-use methods to convert between* delimited strings, such as CSV strings, and collections and arrays.**/
public abstract class StringUtils {

一般段落都用p標簽來標記,凡涉及到類名和方法名都用@code標記,凡涉及到組織的,一般用a標簽提供出來鏈接地址。

  1. @param
    一般類中支持泛型時會通過@param來解釋泛型的類型
/**
* @param <E> the type of elements in this list
*/
public interface List<E> extends Collection<E> {}
  1. @author
    詳細描述后面一般使用@author來標記作者,如果一個文件有多個作者來維護就標記多個@author,@author 后面可以跟作者姓名(也可以附帶郵箱地址)、組織名稱(也可以附帶組織官網地址)
// 純文本作者
@author Rod Johnson// 純文本作者,郵件
@author Igor Hersht, igorh@ca.ibm.com// 超鏈接郵件 純文本作者
@author <a href="mailto:ovidiu@cup.hp.com">Ovidiu Predescu</a>// 純文本郵件
@author shane_curcuru@us.ibm.com// 純文本 組織
@author Apache Software Foundation// 超鏈接組織地址 純文本組織
@author <a href="https://jakarta.apache.org/turbine"> Apache Jakarta Turbine</a>
  1. @see 另請參閱
    @see 一般用于標記該類相關聯的類,@see即可以用在類上,也可以用在方法上。
/*** @see IntStream* @see LongStream* @see DoubleStream* @see <a href="package-summary.html">java.util.stream</a>* /
public interface Stream<T> extends BaseStream<T, Stream<T>> {}
  1. @since 從以下版本開始
    @since 一般用于標記文件創建時項目當時對應的版本,一般后面跟版本號,也可以跟是一個時間,表示文件當前創建的時間
package java.util.stream;/**
* @since 1.8
*/
public interface Stream<T> extends BaseStream<T, Stream<T>> {}
package org.springframework.util;/**
* @since 16 April 2001
*/
public abstract class StringUtils {}
  1. @version 版本
    @version 用于標記當前版本,默認為1.0
package com.sun.org.apache.xml.internal.resolver;/*** @version 1.0*/
public class Resolver extends Catalog {}

三:寫在方法上的Javadoc
寫在方法上的文檔標注一般分為三段:

第一段:概要描述,通常用一句或者一段話簡要描述該方法的作用,以英文句號作為結束
第二段:詳細描述,通常用一段或者多段話來詳細描述該方法的作用,一般每段話都以英文句號作為結束
第三段:文檔標注,用于標注參數、返回值、異常、參閱等
方法詳細描述上經常使用html標簽來,通常都以p標簽開始,而且p標簽通常都是單標簽,不使用結束標簽,其中使用最多的就是p標簽和pre標簽,ul標簽, i標簽。

pre元素可定義預格式化的文本。被包圍在pre元素中的文本通常會保留空格和換行符。而文本也會呈現為等寬字體,pre標簽的一個常見應用就是用來表示計算機的源代碼。

一般p經常結合pre使用,或者pre結合@code共同使用(推薦@code方式)
一般經常使用pre來舉例如何使用方法

注意:pre>標簽中如果有小于號、大于號、例如泛型 在生產javadoc時會報錯

/*** Check whether the given {@code CharSequence} contains actual <em>text</em>.* <p>More specifically, this method returns {@code true} if the* {@code CharSequence} is not {@code null}, its length is greater than* 0, and it contains at least one non-whitespace character.* <p><pre class="code">* StringUtils.hasText(null) = false* StringUtils.hasText("") = false* StringUtils.hasText(" ") = false* StringUtils.hasText("12345") = true* StringUtils.hasText(" 12345 ") = true* </pre>* @param str the {@code CharSequence} to check (may be {@code null})* @return {@code true} if the {@code CharSequence} is not {@code null},* its length is greater than 0, and it does not contain whitespace only* @see Character#isWhitespace*/
public static boolean hasText(@Nullable CharSequence str) {return (str != null && str.length() > 0 && containsText(str));
}
<pre>{@codePerson[] men = people.stream().filter(p -> p.getGender() == MALE).toArray(Person[]::new);
}</pre>
  1. @param
    @param 后面跟參數名,再跟參數描述
/**
* @param str the {@code CharSequence} to check (may be {@code null})
*/
public static boolean containsWhitespace(@Nullable CharSequence str) {}
  1. @return
    @return 跟返回值的描述
/**
* @return {@code true} if the {@code String} is not {@code null}, its
*/
public static boolean hasText(@Nullable String str){}
  1. @throws
    @throws 跟異常類型 異常描述 , 用于描述方法內部可能拋出的異常
/**
* @throws IllegalArgumentException when the given source contains invalid encoded sequences
*/
public static String uriDecode(String source, Charset charset){}
  1. @exception
    用于描述方法簽名throws對應的異常
/**
* @exception IllegalArgumentException if <code>key</code> is null.
*/
public static Object get(String key) throws IllegalArgumentException {}
  1. @see
    @see既可以用來類上也可以用在方法上,表示可以參考的類或者方法
/**
* @see java.net.URLDecoder#decode(String, String)
*/
public static String uriDecode(String source, Charset charset){}
  1. @value
    用于標注在常量上,{@value} 用于表示常量的值
/** 默認數量 {@value} */
private static final Integer QUANTITY = 1;
  1. @inheritDoc
    @inheritDoc用于注解在重寫方法或者子類上,用于繼承父類中的Javadoc

基類的文檔注釋被繼承到了子類
子類可以再加入自己的注釋(特殊化擴展)
@return @param @throws 也會被繼承
四:示例
spring-core中的StringUtils 示例

package org.springframework.util;/*** Miscellaneous {@link String} utility methods.** <p>Mainly for internal use within the framework; consider* <a href="http://commons.apache.org/proper/commons-lang/">Apache's Commons Lang</a>* for a more comprehensive suite of {@code String} utilities.** <p>This class delivers some simple functionality that should really be* provided by the core Java {@link String} and {@link StringBuilder}* classes. It also provides easy-to-use methods to convert between* delimited strings, such as CSV strings, and collections and arrays.** @author Rod Johnson* @author Juergen Hoeller* @author Keith Donald* @author Rob Harrop* @author Rick Evans* @author Arjen Poutsma* @author Sam Brannen* @author Brian Clozel* @since 16 April 2001*/
public abstract class StringUtils {/*** Decode the given encoded URI component value. Based on the following rules:* <ul>* <li>Alphanumeric characters {@code "a"} through {@code "z"}, {@code "A"} through {@code "Z"},* and {@code "0"} through {@code "9"} stay the same.</li>* <li>Special characters {@code "-"}, {@code "_"}, {@code "."}, and {@code "*"} stay the same.</li>* <li>A sequence "{@code %<i>xy</i>}" is interpreted as a hexadecimal representation of the character.</li>* </ul>* * @param source the encoded String* @param charset the character set* @return the decoded value* @throws IllegalArgumentException when the given source contains invalid encoded sequences* @since 5.0* @see java.net.URLDecoder#decode(String, String)*/public static String uriDecode(String source, Charset charset) {}
package com.example.demo;/*** 類 {@code OrderService} 訂單服務層.** <p> 主要包括 創建訂單、取消訂單、查詢訂單等功能更** @see Order* @author <a href="mailto:mengday.zhang@gmail.com">Mengday Zhang</a>* @since 2018/5/12*/
public class OrderService {/** 默認數量 {@value} */private static final Integer QUANTITY = 1;/*** 創建訂單.** <p> 創建訂單需要傳用戶id和商品列表(商品id和商品數量).** <p><pre>{@code*  演示如何使用該方法*  List<Goods> items = new ArrayList<>();*  Goods goods = new Goods(1L, BigDecimal.ONE);*  Goods goods2 = new Goods(2L, BigDecimal.TEN);*  items.add(goods);*  items.add(goods2);**  Order order1 = new Order();*  order.setUserId("1");*  order.setItems(items);*  OrderService#createOrder(order);* }* </pre>** @param order 訂單信息* @throws NullPointerException 參數信息為空* @exception IllegalArgumentException  數量不合法* @return 是否創建成功* @version 1.0* @see {@link Order}*/public boolean createOrder(Order order) throws IllegalArgumentException{Objects.requireNonNull(order);List<Goods> items = order.getItems();items.forEach(goods -> {BigDecimal quantity = goods.getQuantity();if (quantity == null || BigDecimal.ZERO.compareTo(quantity) == 0) {throw new IllegalArgumentException();}});System.out.println("create order...");return true;}
}

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/news/249553.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/249553.shtml
英文地址,請注明出處:http://en.pswp.cn/news/249553.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

Linux下查看當前文件大小的命令

1、ls -lht 列出每個文件的大小和當前目錄所有文件大小總和 2、du -sh * 列出當前文件夾下的所有子文件的大小 看你需要啥樣的&#xff0c;自己來吧 轉載于:https://www.cnblogs.com/xbxxf/p/9619818.html

(13)UniquePathIII

一、問題描述 給定一個二維數組。 數組只有一個元素是1&#xff0c;是起點數組只有一個元素是2&#xff0c;是終點數組中的0是必須經過的地方數組中的-1是障礙不可通過從起始點到終點一共有多少路徑&#xff1f; 二、思路 DFS 三、Code 1 package algorithm;2 3 /**4 * Create…

Spring IOC-BeanFactory的繼承體系結構

本文主要介紹BeanFactory以及它的各種繼承層級的接口、抽象類及實現類&#xff0c;因為內容很多&#xff0c;所以這里不介紹ApplicationContext繼承體系下的類&#xff08;雖然ApplicationContext本質上也是BeanFactory&#xff0c;但是畢竟這這是我們平時接觸最多的兩種類別&a…

deepin15.7掛載/home到單獨的分區:

1、首先打開Gpart分區編輯器&#xff0c;找一個空閑的分區&#xff0c;調整好分區大小&#xff0c;格式化成ext4格式。 具體步驟為首先unmount所用到的盤&#xff0c;然后右擊該盤選擇format to ext4&#xff0c;最后點擊apply提交修改 2、記錄下分區的路徑&#xff0c;比如 /d…

Java使用Redis實現分布式鎖來防止重復提交問題

如何用消息系統避免分布式事務&#xff1f; - 少年阿賓 - BlogJavahttp://www.blogjava.net/stevenjohn/archive/2018/01/04/433004.html 【請求去重】java基于分布式鎖解決重復請求問題 - qq_41793222的博客 - CSDN博客https://blog.csdn.net/qq_41793222/article/details/830…

【PHP】xampp配置多個監聽端口和不同的網站目錄(轉)

轉自&#xff1a;https://blog.csdn.net/cc1314_/article/details/75646344 windows下使用xampp配置多個監聽端口和不同的網站目錄 一&#xff1a;配置Apache文件httpd.conf打開Apache的配置文件httpd.conf&#xff0c;可以通過點擊xampp的Apache的config下的Apache(httpd.conf…

本地連接虛擬機 Oracle數據庫 報ORA-12541:TNS:no listener

一、環境 本機環境&#xff1a;win10,pl/sql Developer 虛擬機環境&#xff1a;win10&#xff0c;oracle 11g 1.本機和虛擬機互相ping都可以ping通。 2.虛擬機監聽程序已啟動。 二、配置文件 1.本機 tnsname.ora 配置文件 local (DESCRIPTION   (ADDRESS_LIST   (ADDR…

Java消息中間件

1.概述 中間件 非底層操作系統軟件&#xff0c;非業務應用軟件&#xff0c;不是直接給最終用戶使用的&#xff0c;不能直接給客戶帶來價值的軟件統稱為中間件。 消息中間件 管制關注于數據的發送和接收&#xff0c;利用高效可靠的異步消息傳遞機制集成分布式系統。 優點 ① 解…

form 源碼刨析

def clean_name(self) value self.cleaned_data.get(name) if "金-瓶-梅" not in value: raise ValidationError("不符合要求") return value 重寫clean方法 轉載于:https://www.cnblogs.com/wuheng-123/p/9623289.html

兩道面試題

fi [] for i in range(3):def foo(x):print(x i) #由于函數在這時還沒有執行&#xff0c;在這里的i&#xff0c;指向的還是同一個IP地址&#xff0c;所以都是2.fi.appent(foo) for f in fi:f(2)答案&#xff1a;4&#xff0c;4&#xff0c;4 a [0, 1, 2, 3, 4] print(a[-6:6…

uiautomator2進階

點擊控件的具體位置 d(text"Settings").click(offset(0.5, 0.5)) 點擊控件的中間位置 d(text"Settings").click(offset(0, 0)) 點擊控件的左上方 d(text"Settings").click(offset(1, 1)) 點擊控件的右下方 拖動控件 d(text"Settings&quo…

LIS路徑記錄(UVA481)

出自一次很失敗的開學測試 LIS自然會做 可以參見&#xff1a;https://blog.csdn.net/Radium_1209/article/details/79704234 由于對于LIS的nlogn算法不熟悉&#xff0c;導致錯誤理解&#xff0c;記錄的路徑出現了問題&#xff0c;其中還用了n^2的算法記錄路徑&#xff08;好理解…

Activemq源碼、編譯、導入idea、源碼調試總結

1、在本地下載源碼 在GitHub官網搜activemq&#xff0c;找到排名第一的&#xff0c;并打開&#xff0c;如圖所示&#xff0c;拷貝url地址。 activemq托管地址&#xff1a;https://github.com/apache/activemq.git 切換到git bash下&#xff0c;輸入命令&#xff1a; mkdir a…

activiti 視圖

1. application.properties增加如下配置 spring.activiti.database-schema-updatefalsespring.activiti.db-history-usedfalsespring.activiti.db-identity-usedfalse 2. 視圖sql -- 修改表名稱 ALTER TABLE act_id_user RENAME act_id_user_bak1; ALTER TABLE act_id_group RE…

ActiveMQ源碼解析 建立連接

作為一個消息中間件&#xff0c;有客戶端和服務端兩部分代碼&#xff0c;這次的源碼解析系列主要從客戶端的代碼入手&#xff0c;分成建立連接、消息發送、消息消費三個部分。趁著我昨天弄明白了源碼編譯的興奮勁頭還沒過去&#xff0c;今天研究一下建立連接的部分。 如果讀起…

原生Js_實現廣告彈窗

廣告樣式當頁面加載后5s刷新在右下角 <!DOCTYPE html> <html><head><meta charset"utf-8" /><title>Gary圖片輪播</title><style type"text/css">#ad{width:300px;height: 300px;background-color:antiquewhite…

springcloud注冊中心eureka

1、前提 springcloud的注冊中心是以springboot為基礎搭建起來的。 開發工具&#xff1a;IDEA 項目管理工具&#xff1a;maven 2、搭建步驟 創建一個web項目&#xff08;建議使用IDEA工具構建項目&#xff09;修改pom文件 <dependency><groupId>org.springframework…

Nancy in .Net Core學習筆記 - 視圖引擎

前文中我們介紹了Nancy中的路由&#xff0c;這一篇我們來介紹一下Nancy中的視圖引擎。 Nancy中如何返回一個視圖(View) 在ASP.NET Mvc中&#xff0c;我們使用ViewResult類來返回一個視圖。Nancy中也提供了類似的功能, 在NancyModule類中&#xff0c;Nancy提供了一個ViewRendere…

設計模式之組合模式(Composite 模式)

引入composite模式 在計算機文件系統中&#xff0c;有文件夾的概念&#xff0c;文件夾里面既可以放入文件也可以放入文件夾&#xff0c;但是文件中卻不能放入任何東西。文件夾和文件構成了一種遞歸結構和容器結構。 雖然文件夾和文件是不同的對象&#xff0c;但是他們都可以被放…

Ansible批量在遠程主機執行命令

Ansible直接執行遠程命令&#xff0c;不用ssh登陸交互執行。    如下&#xff1a;    ansible all -i 192.168.199.180, -m shell -a "ifconfig" -u supermap    參數解釋&#xff1a;    -i 連接到遠程主機“192.168.199.180&#xff0c;”&#xf…