Go各種類型轉換及函數的進階用法_Golang

來源:互聯網
上載者:User

golang是強型別語言,在應用過程中類型轉換基本都會用到。下面整理一下常用的類型轉換,會持續更新。 整形轉字串

fmt.Println(strconv.Itoa(100))

該方法的源碼是:

// Itoa is shorthand for FormatInt(i, 10).func Itoa(i int) string {return FormatInt(int64(i), 10)}

可以看出是FormatInt方法的簡單實現。 字串轉整形

i, _ := strconv.Atoi("100")fmt.Println(i)
64位整形轉字串
var i int64i = 0x100fmt.Println(strconv.FormatInt(i, 10))

FormatInt第二個參數表示進位,10表示十進位。 位元組轉32位整形

b := []byte{0x00, 0x00, 0x03, 0xe8}bytesBuffer := bytes.NewBuffer(b)var x int32binary.Read(bytesBuffer, binary.BigEndian, &x)fmt.Println(x)

其中binary.BigEndian表示位元組序,相應的還有little endian。通俗的說法叫大端、小端。 32位整形轉位元組

var x int32x = 106bytesBuffer := bytes.NewBuffer([]byte{})binary.Write(bytesBuffer, binary.BigEndian, x)fmt.Println(bytesBuffer.Bytes())
位元組轉字串
fmt.Println(string([]byte{97, 98, 99, 100}))
字串轉位元組
fmt.Println([]byte("abcd"))
 

轉載請註明:快樂編程 » golang類型轉換

 

變參及匿名的用法:

/** * Created by Administrator on 13-12-18. */package mainimport ("fmt""os")func f1(args ...interface {}) {f2(args...)f2(args[1:]...)}func f2(args ...interface {}) {for i, v := range args {fmt.Fprintf(os.Stdout, "i = %d %v\n", i, v)}fmt.Fprintf(os.Stdout, "--------------\n")}func main() {f1(1, "hello", 3.14, main)// 匿名函數 1f := func(i, j int) (result int) { // f 為函數地址result = i+jreturn}fmt.Fprintf(os.Stdout, "f = %v  f(1,3) = %v\n", f, f(1, 3))// 匿名函數 2x, y := func(i, j int) (m, n int) { // x y 為函數傳回值return j, i}(1, 9) // 直接建立匿名函數並執行fmt.Fprintf(os.Stdout, "x = %d   y = %d\n", x, y)}


i = 0 1
i = 1 hello
i = 2 3.14
i = 3 0x4012c0
--------------
i = 0 hello
i = 1 3.14
i = 2 0x4012c0
--------------
f = 0x401690  f(1,3) = 4
x = 9   y = 1

http://blog.csdn.net/eclipser1987/article/details/17396201

 

回呼函數的實現:

package mainimport (    "fmt"    "strconv")//聲明一個saveLog類型,這個類型其實表示一個函數定義type saveLog func(msg string)//這個函數的第二個參數是一個函數//這個函數將一個字串轉換為Int類型,如果失敗了,則返回0,並輸出錯誤。func stringToInt(s string, log saveLog) int64 {    if value, err := strconv.ParseInt(s, 0, 0); err != nil {        log(err.Error())        return 0    } else {        return value    }}//記錄日誌的函數實現func myLog(msg string) {    fmt.Println("Find error:", msg)}//在調用第二個stringToInt的時候會發生運行時的錯誤輸出func main() {    stringToInt("123", myLog)    stringToInt("s", myLog)}

運行結果為:

$ go build func_callback.go
$ ./func_callback
Find error: strconv.ParseInt: parsing "s": invalid syntax

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.