golang學習筆記13 Golang 類型轉換整理 go語言string、int、int64、float64、complex 互相轉換

來源:互聯網
上載者:User

golang學習筆記13 Golang 類型轉換整理 go語言string、int、int64、float64、complex 互相轉換

#string到int
int,err:=strconv.Atoi(string)
#string到int64
int64, err := strconv.ParseInt(string, 10, 64)
#int到string
string:=strconv.Itoa(int)
#int64到string
string:=strconv.FormatInt(int64,10)

#int到int64,把int先轉成字串再轉成int64,返回帶err參數的需要忽略掉
s := strconv.Itoa(int)
s64,_ := strconv.ParseInt(s,10,64)

=======================
複數,求平方,10的5次方
cmplx.Pow(10,5)
https://gowalker.org/math/cmplx#Pow
cmplx.Pow() complex 轉成int64
取實數部分,float64類型的
p := real(cmplx.Pow(10,5))
float64 轉成轉成int64
p := int64(real(cmplx.Pow(10,5)))
------------------

float64 轉成轉成int64
var x float64 = 5.7
var y int = int64(x)

var value1 complex64 = 3.2 + 12i
value2 := 3.2 + 12i
value3 := complex(3.2, 12)
r = real(value1) //獲得複數的實部
i = imag(value1) //獲得複數的虛部
=======================
1、整形到字串:
[plain] view plain copy
var i int = 1
var s string
s = strconv.Itoa(i) 或者 s = FormatInt(int64(i), 10)

2、字串到整形
var s string = "1"
var i int
i, err = strconv.Atoi(s) 或者 i, err = ParseInt(s, 10, 0)

3、字串到float(32 / 64)
var s string = 1
var f float32
f, err = ParseFloat(s, 32)

float 64的時候將上面函數中的32轉為64即可

4、整形到float或者float到整形
直接使用float(i) 或者 int(f) 直接進行轉換即可

=======================
golang int轉換成string方法:
var i int = 10
// 通過Itoa方法轉換
str1 := strconv.Itoa(i)
// 通過Sprintf方法轉換
str2 := fmt.Sprintf("%d", i)
=======================
(1)int轉string
s := strconv.Itoa(i)
等價於s := strconv.FormatInt(int64(i), 10)

(2)int64轉string
i := int64(123)
s := strconv.FormatInt(i, 10)
第二個參數為基數,可選2~36
註:對於無符號整形,可以使用FormatUint(i uint64, base int)

(3)string轉int
i, err := strconv.Atoi(s)

(4)string轉int64
i, err := strconv.ParseInt(s, 10, 64)
第二個參數為基數(2~36),第三個參數位大小表示期望轉換的結果類型,其值可以為0, 8, 16, 32和64,分別對應 int, int8, int16, int32和int64

(5)float相關

float轉string:
v := 3.1415926535
s1 := strconv.FormatFloat(v, 'E', -1, 32)//float32s2 := strconv.FormatFloat(v, 'E', -1, 64)//float64

函數原型及參數含義具體可查看:https://golang.org/pkg/strconv/#FormatFloat

string轉float:


s := "3.1415926535"
v1, err := strconv.ParseFloat(v, 32)
v2, err := strconv.ParseFloat(v, 64)

PS:go語言string、int、int64互相轉換


//string到int
int,err:=strconv.Atoi(string)
//string到int64
int64, err := strconv.ParseInt(string, 10, 64)
//int到string
string:=strconv.Itoa(int)
//int64到string
string:=strconv.FormatInt(int64,10)
//string到float32(float64)
float,err := strconv.ParseFloat(string,32/64)
//float到string
string := strconv.FormatFloat(float32, 'E', -1, 32)
string := strconv.FormatFloat(float64, 'E', -1, 64)
// 'b' (-ddddp±ddd,二進位指數)
// 'e' (-d.dddde±dd,十進位指數)
// 'E' (-d.ddddE±dd,十進位指數)
// 'f' (-ddd.dddd,沒有指數)
// 'g' ('e':大指數,'f':其它情況)
// 'G' ('E':大指數,'f':其它情況)

相關文章

聯繫我們

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