真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Go數(shù)字轉(zhuǎn)字符串,字符串轉(zhuǎn)數(shù)字,枚舉

數(shù)字轉(zhuǎn)字符串,字符串轉(zhuǎn)數(shù)字

package main

import (
    "fmt"
    "strconv"
)

func main()  {

    // 80 轉(zhuǎn)換成 "80"
    //number := 80
    //
    //number_int :=strconv.Itoa(number)
    //
    //fmt.Println(number_int)
    //fmt.Printf("%T", number_int)

    //  如果不用這種的,可能轉(zhuǎn)出來的不是你想象中的那樣
    //number := 80
    //
    //number_str := string(number)
    //
    //fmt.Println(number_str)  // number_str = P, 對應(yīng)到了相應(yīng)的ascci碼上了
    //fmt.Printf("%T", number_int)

    // 字符串轉(zhuǎn)數(shù)字 "80" 轉(zhuǎn)換成 80
    number := "80rrrrr"

    number_int, error := strconv.Atoi(number)
    if error == nil {
        fmt.Println("轉(zhuǎn)換成功",number_int)
    }else {
        fmt.Println("轉(zhuǎn)換錯(cuò)誤,",error)
    }
    //fmt.Println(error)
    //fmt.Println(number_int)
    //fmt.Printf("%T", number_int)
}

iota 枚舉

package main

import "fmt"

func main()  {

    // 1  iota 常量×××, 每隔一行,自動累加1
    // 2  iota 給常量賦值使用

    const (
        a = iota //0
        b = iota  // 1
        c = iota  // 2
    )

    fmt.Println(a,b,c)
    // 0 1 2

    // 3 iota遇到const, 重置為0

    const d  = iota
    fmt.Println(d)

    // 4 可以只寫一個(gè)iota
    const (
        a1 = iota
        b1
        c1
    )
    fmt.Println(a1, b1, c1)

    // 5 如果是同一行, 值都一樣

    const (
        i = iota
        j1, j2, j3 = iota, iota, iota
        k = iota
    )
    fmt.Println(i,"\t",j1,j2,j3, "\t",k)

}

新聞標(biāo)題:Go數(shù)字轉(zhuǎn)字符串,字符串轉(zhuǎn)數(shù)字,枚舉
網(wǎng)站地址:http://weahome.cn/article/igjcid.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部