golang strconv資料類型轉換的用法

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

strconv是golang用來做資料類型轉換的一個庫。 


介紹下strconv最常用的兩個方法, 雖然沒有解釋語言那麼自在可以str(int),int(string), 那還算簡練。


該文章寫的有些亂,歡迎來噴 ! 另外文章後續不斷更新中,請到原文地址查看更新。

http://xiaorui.cc/2016/03/08/golang-strconv%E6%95%B0%E6%8D%AE%E7%B1%BB%E5%9E%8B%E8%BD%AC%E6%8D%A2%E7%9A%84%E7%94%A8%E6%B3%95/

Python#xiaorui.ccAtoi (string to int)func Atoi(s string) (i int, err error)Itoa (int to string)func Itoa(i int) string
123456789  #xiaorui.ccAtoi (string to int) func Atoi(s string) (i int, err error) Itoa (int to string) func Itoa(i int) string


Atoi Itoa的使用例子:

Pythoni, err := strconv.Atoi("-42")s := strconv.Itoa(-42)
123  i, err := strconv.Atoi("-42")s := strconv.Itoa(-42)


下面是完整的例子:

Pythonpackage main//xiaorui.cc import ( "strconv")func main() { i, err := strconv.Atoi("8888") if err != nil { panic(err) } i += 3 println(i) s := strconv.Itoa(333) s += "3" println(s)}
12345678910111213141516171819  package main//xiaorui.cc      import (    "strconv") func main() {    i, err := strconv.Atoi("8888")    if err != nil {        panic(err)    }    i += 3    println(i)          s := strconv.Itoa(333)    s += "3"    println(s)}

strconv不只是可以字串跟int之間的轉換類型,其實還有更多方法.

Format xxx 轉成string字串

PythonFormatBoolfunc FormatBool(b bool) stringFormatFloatfunc FormatFloat(f float64, fmt byte, prec, bitSize int) stringFormatIntfunc FormatInt(i int64, base int) stringFormatUintfunc FormatUint(i uint64, base int) string
123456789101112  FormatBoolfunc FormatBool(b bool) string FormatFloatfunc FormatFloat(f float64, fmt byte, prec, bitSize int) string FormatIntfunc FormatInt(i int64, base int) string FormatUintfunc FormatUint(i uint64, base int) string


FormatInt的例子:

result := strconv.FormatInt(int64(value), 10)

Parse xxx 是轉成相應的格式

Python轉換成bool類型.b, err := strconv.ParseBool("true")轉換成Float類型f, err := strconv.ParseFloat("3.1415", 64)轉換成int類型i, err := strconv.ParseInt("-42", 10, 64)轉成uint類型u, err := strconv.ParseUint("42", 10, 64)
123456789101112  轉換成bool類型.b, err := strconv.ParseBool("true") 轉換成Float類型f, err := strconv.ParseFloat("3.1415", 64) 轉換成int類型i, err := strconv.ParseInt("-42", 10, 64) 轉成uint類型u, err := strconv.ParseUint("42", 10, 64)

golang的類型轉換沒啥好說的,不清楚的直接看官方文檔。

相關文章

聯繫我們

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