第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

獲取“STRING”變量的 INT 值

獲取“STRING”變量的 INT 值

Go
紫衣仙女 2023-06-26 16:32:44
我需要像這樣的輸出0 - os.O_APPEND     - 10241 - os.O_CREATE     - 642 - os.O_EXCL       - 1283 - os.O_RDONLY     - 04 - os.O_RDWR       - 25 - os.O_SYNC       - 10526726 - os.O_TRUNC      - 5127 - os.O_WRONLY     - 1我能做到一半func main() {        a := []int{os.O_APPEND,os.O_CREATE,os.O_EXCL,os.O_RDONLY,os.O_RDWR,os.O_SYNC,os.O_TRUNC,os.O_WRONLY}        for index, value := range a {                fmt.Printf("%d -  - %d\n", index, value)        }}這給了我輸出0 -  - 10241 -  - 642 -  - 1283 -  - 04 -  - 25 -  - 10526726 -  - 5127 -  - 1和它的另一半func main() {        a := []string{"os.O_APPEND","os.O_CREATE","os.O_EXCL","os.O_RDONLY","os.O_RDWR","os.O_SYNC","os.O_TRUNC","os.O_WRONLY"}        for index, value := range a {                fmt.Printf("%d - %-15s -\n", index, value)        }}這給了我輸出0 - os.O_APPEND     -1 - os.O_CREATE     -2 - os.O_EXCL       -3 - os.O_RDONLY     -4 - os.O_RDWR       -5 - os.O_SYNC       -6 - os.O_TRUNC      -7 - os.O_WRONLY     -我怎樣才能得到想要的輸出?
查看完整描述

1 回答

?
繁星點(diǎn)點(diǎn)滴滴

TA貢獻(xiàn)1803條經(jīng)驗(yàn) 獲得超3個(gè)贊

你可以使用地圖。


func main() {

    var m map[string]int

    m = make(map[string]int)

    b := []int{os.O_APPEND,os.O_CREATE,os.O_EXCL,os.O_RDONLY,os.O_RDWR,os.O_SYNC,os.O_TRUNC,os.O_WRONLY}

    a := []string{"os.O_APPEND","os.O_CREATE","os.O_EXCL","os.O_RDONLY","os.O_RDWR","os.O_SYNC","os.O_TRUNC","os.O_WRONLY"}

    for index, value := range a {

        m[value] = b[index]

    }

    var i =0

    for index,mapValue := range m{

        fmt.Println(i," - ",index,"-",mapValue )

        i++

    }

}

輸出將是:


0  -  os.O_RDWR - 2

1  -  os.O_SYNC - 1052672

2  -  os.O_TRUNC - 512

3  -  os.O_WRONLY - 1

4  -  os.O_APPEND - 1024

5  -  os.O_CREATE - 64

6  -  os.O_EXCL - 128

7  -  os.O_RDONLY - 0

或者你可以定義自定義結(jié)構(gòu)


type CustomClass struct {

    StringValue string

    IntValue int

}

func main() {


    CustomArray:=[]CustomClass{

        {"os.O_APPEND",os.O_APPEND},

        {"os.O_CREATE",os.O_CREATE},

        {"os.O_EXCL",os.O_EXCL},

        {"os.O_RDONLY",os.O_RDONLY},

        {"os.O_RDWR",os.O_RDWR},

        {"os.O_SYNC",os.O_SYNC},

        {"os.O_TRUNC",os.O_TRUNC},

        {"os.O_WRONLY",os.O_WRONLY},

    }

    for k, v := range CustomArray {

        fmt.Println(k," - ", v.StringValue," - ", v.IntValue)

    }

}


查看完整回答
反對(duì) 回復(fù) 2023-06-26
  • 1 回答
  • 0 關(guān)注
  • 166 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)