Golang fmt包使用小技巧

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

Golang fmt包使用小技巧


Go語言fmt包實現了類似於C語言printf和scanf的格式化I/O函數。格式謂詞用%前置,go語言中稱為”verb”。verbs從C派生而來,但更簡單。以下是在開發過程中用過的一些實用小技巧。

一 用十六進位列印數組或切片,每個byte兩個字元,每兩個字元用空格間隔

該功能在通訊協定類的開發中使用頻繁,向終端裝置發送的控制命令及應答資訊需要列印在日誌中,或調試時列印收發資料,通常這些是十六進位格式的,並且需要每兩個字元之間用空格間隔。

    data := []byte{1, 2, 4, 88, 99, 120, 245, 241}    fmt.Printf("% X\r\n", data)    fmt.Printf("% x\r\n", data)

  

輸出結果:


01 02 04 58 63 78 F5 F101 02 04 58 63 78 f5 f1

 


二 列印結構體時輸出欄位名


typePersionstruct {    Name string    Age int    ID string}    p := Persion{"xiaoming", 12, "1302222222"}    fmt.Printf("%v\r\n", p)    fmt.Printf("%+v\r\n", p)

  

輸出結果:

{xiaoming 12 1302222222}{Name:xiaoming Age:12 ID:1302222222}

 

預設的%v列印只有值,%+v可以增加結構體欄位名



三 重複使用運算元

經常會遇到同一個值在格式化列印內容中出現多次的情況,go語言提供了重複使用運算元的機制。

    x := int64(0xdeadbeef)    fmt.Printf("%d %[1]x %#[1]x %#[1]X\r\n", x)

  

輸出結果

3735928559 deadbeef 0xdeadbeef 0XDEADBEEF

 

四 列印不同進位的數值時增加首碼

    x = 200    px := &x    fmt.Printf("%#d %#[1]o %#[1]b %#[1]x %#[1]X %p %#[2]p\r\n", x,px)

 

 

輸出結果

200 0310 11001000 0xc8 0XC8 0xc042040228 c042040228

 

#為8進位數值增加0;為十六進位%#x增加0x;為十六進位%#X增加0X;%#p抑制了0x;

#對十進位d和二進位b不起作用。


五 列印複雜結構體


開發過程中經常用到複雜的結構體,結構體中帶有層層嵌套結構,並且欄位是結構體的指標,對這樣的欄位printf列印的是指標的值,這不是我們需要的。

例如有如下在開發中用到的結構體,avro描述

{"type": "record","name": "intersection","fields" : [{"name": "inter_id", "type": "int"},{"name": "name", "type": "string"},{"name": "shape", "type": "int"},{"name": "primary_unit", "type": "int"},{"name": "unit_two", "type": "int"},{"name": "unit_three", "type": "int"},{"name": "longitude", "type": "double"},{"name": "latitude", "type": "double"},{"name": "entrances", "type": {"type": "array", "name": "", "items": {"type": "record","name": "entrance","fields" : [{"name": "en_id", "type": "int"},{"name": "name", "type": "string"},{"name": "degree", "type": "int"},{"name": "orientation", "type": "int"},{"name": "side_walks", "type": {"type": "array", "name": "", "items": {"type": "record","name": "side_walk","fields" : [{"name": "id", "type": "int"}]}}},{"name": "motor_lanes", "type": {"type": "array", "name": "", "items": {"type": "record","name": "motor_lane","fields" : [{"name": "id", "type": "int"},{"name": "lane_flow", "type": "int"},{"name": "has_waiting_area", "type": "boolean"}]}}},{"name": "non_motor_lanes", "type": {"type": "array", "name": "", "items": {"type": "record","name": "non_motor_lane","fields" : [{"name": "id", "type": "int"},{"name": "lane_flow", "type": "int"}]}}},{"name": "exit_lanes", "type": {"type": "array", "name": "", "items": {"type": "record","name": "exit_lane","fields" : [{"name": "id", "type": "int"},{"name": "lane_flow", "type": "int"}]}}},{"name": "exit_non_motor_lanes", "type": {"type": "array", "name": "", "items": "non_motor_lane"}}]}}}]}

 


產生的程式碼如下(部分省略)


typeIntersectionstruct {    InterID int32`json:"inter_id" xorm:"pk notnull"`    Name string`json:"name"`    Shape int32`json:"shape"`    PrimaryUnit int32`json:"primary_unit"`    UnitTwo int32`json:"unit_two"`    UnitThree int32`json:"unit_three"`    Longitude float64`json:"longitude"`    Latitude float64`json:"latitude"`    Entrances []*Entrance `json:"entrances" xorm:"-"`}typeEntrancestruct {    InterID int32`json:"-" xorm:"pk notnull"`    EnID int32`json:"en_id" xorm:"pk notnull"`    Name string`json:"name"`    Degree int32`json:"degree"`    Orientation int32`json:"orientation"`    SideWalks []*SideWalk `json:"side_walks" xorm:"-"`    MotorLanes []*MotorLane `json:"motor_lanes" xorm:"-"`    NonMotorLanes []*NonMotorLane `json:"non_motor_lanes" xorm:"-"`    ExitLanes []*ExitLane `json:"exit_lanes" xorm:"-"`    ExitNonMotorLanes []*NonMotorLaneExit `json:"exit_non_motor_lanes" xorm:"-"`}

  

如果進行列印,輸出只有一層結構,嵌套的部分只有指標值。


要列印完整的結果,有兩種方法:一種是用反射實現自訂的print進行深度列印;另外一種是利用json包。

    bData, _ := json.MarshalIndent(dbConf, "", "\t")    fmt.Println(string(bData))

  

六 終端程式列印等待


經常會寫些工具類軟體,如果耗時較長,增加等待輸出會使提高使用者使用體驗。以下引用《Go語言程式設計》的例子。

package mainimport (    "fmt"    "time")func main() {    go spinner(100 * time.Millisecond)    const n = 45    fibN := fib(n) //slow    fmt.Printf("\rFibonacci(%d)=%d\n", n, fibN)}func spinner(delay time.Duration) {    for {        for _, r := range `-\|/` {            fmt.Printf("\r%c", r)            time.Sleep(delay)        }    }}func fib(x int) int {    if x < 2 {        return x    }    return fib(x-1) + fib(x-2)}

  

斐波那契Function Compute較慢,開啟goroutine進行列印等待符號,計算完成後退出。



















相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.