码迷,mamicode.com
首页 > 其他好文 > 详细

Go 数字转字符串,字符串转数字, 枚举

时间:2019-04-07 18:05:54      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:错误   int   erro   不用   err   重置   str   pac   string   

数字转字符串,字符串转数字
package main

import (
    "fmt"
    "strconv"
)

func main()  {

    // 80 转换成 "80"
    //number := 80
    //
    //number_int :=strconv.Itoa(number)
    //
    //fmt.Println(number_int)
    //fmt.Printf("%T", number_int)

    //  如果不用这种的,可能转出来的不是你想象中的那样
    //number := 80
    //
    //number_str := string(number)
    //
    //fmt.Println(number_str)  // number_str = P, 对应到了相应的ascci码上了
    //fmt.Printf("%T", number_int)

    // 字符串转数字 "80" 转换成 80
    number := "80rrrrr"

    number_int, error := strconv.Atoi(number)
    if error == nil {
        fmt.Println("转换成功",number_int)
    }else {
        fmt.Println("转换错误,",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 可以只写一个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)

}

Go 数字转字符串,字符串转数字, 枚举

标签:错误   int   erro   不用   err   重置   str   pac   string   

原文地址:https://blog.51cto.com/13764714/2374999

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!