首頁 > 軟體

Golang中的godoc使用簡介(推薦)

2022-10-30 14:00:58

go doc簡介

Godoc是go語言的檔案化工具,類似於檔案化工具godoc,類似於Python的Docstring和Java的Javadoc
Godoc通過解析包含註釋的Go程式碼來生成HTML或文字型別的檔案。

Golang中的godoc使用簡介

學習go語法的同時為了方便檢視對應的檔案,不同的Go版本會有一些改動,所以,使用本地Go原始碼生成的檔案顯然更精確。

go在1.13之前是自帶godoc的,之後的版本需要自行安裝。

go get -u golang.org/x/tools/cmd/godoc // 並沒有自動安裝
go install golang.org/x/tools/cmd/godoc // 手動安裝

> godoc -h

usage: godoc -http=localhost:6060
  -goroot string
        Go root directory (default "D:\Go")
  -http string
        HTTP service address (default "localhost:6060")
  -index
        enable search index
  -index_files string
        glob pattern specifying index files; if not empty, the index is read from these files in sorted order
  -index_interval duration
        interval of indexing; 0 for default (5m), negative to only index once at startup
  -index_throttle float
        index throttle value; 0.0 = no time allocated, 1.0 = full throttle (default 0.75)
  -links
        link identifiers to their declarations (default true)
  -maxresults int
        maximum number of full text search results shown (default 10000)
  -notes string
        regular expression matching note markers to show (default "BUG")
  -play
        enable playground
  -templates string
        load templates/JS/CSS from disk in this directory
  -timestamps
        show timestamps with directory listings
  -url string
        print HTML for named URL
  -v    verbose mode
  -write_index
        write index to a file; the file name must be specified with -index_files
  -zip string
        zip file providing the file system to serve; disabled if empty

進入到Go原始碼目錄,D:Gosrc
godoc -http=:6060
掃描檔案需要時間,啟動之後有時候還要等一會。
存取瀏覽器 http://localhost:6060/

存取指定的包
http://localhost:6060/pkg/fmt/
http://localhost:6060/pkg/archive/tar/

可以通過godoc -url "http://localhost:6060/pkg/" > doc.html匯出為靜態的html單個檔案,但是這個體驗很差。

如果我們要檢視一個第三方包的檔案,比如 github.com/julienschmidt/httprouter
首先要進入它的原始碼目錄
godoc -http=localhost:6060
第一部分依然是 Go Standard library,第二部分 Third party 才是 httprouter 的檔案

如果我們要檢視某個專案的檔案也可以使用這種方式,然後我就發現我們自己寫的專案大多沒有什麼註釋,於是這就牽涉到註釋的規範。

註釋使用//加一個空格並且要緊跟著被註釋物件的上方。

首先需要給package加上註釋,說明此包的作用,例如

// Package bufio implements buffered I/O. It wraps an io.Reader or io.Writer
// object, creating another object (Reader or Writer) that also implements
// the interface but provides buffering and some help for textual I/O.
package bufio

同一目錄下的包可以由很多個檔案組成,如果每個檔案都有對package進行註釋的話,godoc會自動將所有註釋"按照檔名的字母數序"進行合併

在無效註釋中以BUG(who)開頭的註釋, 將被識別為已知bug, 顯示在bugs區域

  // BUG(who): 因為前面有BUG(who)這個關鍵字,所以這句註釋就算沒有緊跟關鍵字不會被隱藏掉

關於DEPRECATED棄用

// Time returns an int64 unix timestamp in milliseconds of the snowflake ID time
// DEPRECATED: the below function will be removed in a future release.
func (f ID) Time() int64 {
	return (int64(f) >> timeShift) + Epoch
}

在註釋符要縮排的話,第二行註釋符後面的空格要比上一行的空格多一個

  example:
      // 123
      //  123

關於 go doc xxx
主要用來在終端上檢視某個包的檔案,它也是通過掃描包內的一些註釋,然後格式化輸出,但很少這麼用。

> go doc fmt

package fmt // import "fmt"
Package fmt implements formatted I/O with functions analogous to C's printf
and scanf. The format 'verbs' are derived from C's but are simpler.
Printing
The verbs:
General:

    %v  the value in a default format
        when printing structs, the plus flag (%+v) adds field names
    %#v a Go-syntax representation of the value
    %T  a Go-syntax representation of the type of the value
    %%  a literal percent sign; consumes no value
...
...

go doc約定規則

godoc
Go的註釋規則很簡單,為型別,變數,常數,函數或包編寫註釋時,直接在這些宣告前編寫普通形式的註釋,中間不留空行即可。Godoc將這些註釋與後面的宣告連線到一起,達到檔案化的目的。

1.註釋符// 後加空格

// 這是一行註釋
package main

2.註釋緊鄰關鍵字行寫,否則不會被識別

// 不會被識別
// 會被識別
package main
// 不會被識別
 
// 會被識別1
// 會被識別2
func main(){
}

3.註釋行的數量最好不要超過3行

4.已知bug註釋:BUG(who)
godoc的輸出將忽略那些與頂層宣告不相鄰的註釋,只有一個例外,那就是以BUG(who)開頭的註釋。這些註釋將被識別為已知的bug,幷包含在檔案的BUGS區。

// 註釋
package main
// BUG(who)  //會被識別,放入檔案的Bugs區
const a = 8

使用命令

首先在命令列進入所需要執行的.go檔案目錄
例:我的test.go放在C:/GoProject/src/test/ 目錄下
需要在命令列進入C:/GoProject/src/test/
然後執行命令

godoc -http=:6060     //6060是godoc提供的預設埠

在瀏覽器輸入 localhost:6060,即可進入godoc的網站,檢視自己的檔案需要在位址列輸入路徑 localhost:6060/pkg/test

到此這篇關於Golang中的godoc使用簡介的文章就介紹到這了,更多相關go語言godoc使用內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com