dqjmq28248 2019-09-16 14:03
浏览 221
已采纳

无法在字符串映射内使用字符串的基础类型:“不能在映射索引中使用<xxx>(类型<yyy>)作为字符串类型”

This question already has an answer here:

I have underlying type of string: type Capability string.

I wanted to use it as a string inside map of strings but I am getting an error:

cannot use cap (type Capability) as type string in map index

This is my code:

package main

import (
    "fmt"
)


type Capability string
var caps_list = map[string]int {
    "HOME" : 1,
}

func main() {

    var cap Capability // string
    cap = "HOME"
    fmt.Print(string(caps_list[cap]))
}  

Why it doesn't accept it ? it is a string after all.

You can try my code here:
https://play.golang.org/p/r-h9Hu8_eoM

</div>
  • 写回答

2条回答 默认 最新

  • dpfln86244 2019-09-16 14:31
    关注

    Just need to change to use string on the cap:

    fmt.Print(string(caps_list[string(cap)]))  
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 51单片机使lcd显示器开机闪烁预设字符闪烁3次需要加什么代码
  • ¥50 C# 使用DEVMOD设置打印机首选项
  • ¥15 麒麟V10 arm安装gdal
  • ¥15 想用@vueuse 把项目动态改成深色主题,localStorge里面的vueuse-color-scheme一开始就给我改成了dark,不知道什么原因(相关搜索:背景颜色)
  • ¥20 OPENVPN连接问题
  • ¥15 flask实现搜索框访问数据库
  • ¥15 mrk3399刷完安卓11后投屏调试只能显示一个设备
  • ¥100 如何用js写一个游戏云存档
  • ¥15 ansys fluent计算闪退
  • ¥15 有关wireshark抓包的问题