drs3925 2018-11-25 18:51
浏览 301
已采纳

GO中的结构枚举

I would like to enumerate the planets in my Go program. Each planet includes a common name (ex: "Venus") and a distance from the sun in Astronomical Unit (ex: 0.722)

So I wrote this code :

type planet struct {
    commonName string
    distanceFromTheSunInAU float64
}

const(
    venus planet = planet{"Venus", 0.387}      // This is line 11
    mercury planet = planet{"Mercury", 0.722}
    earth planet = planet{"Eath", 1.0}
    mars planet = planet{"Mars", 1.52}
    ...
)

But Go didn't let me compile this, and gave me this error :

# command-line-arguments
./Planets.go:11: const initializer planet literal is not a constant
./Planets.go:12: const initializer planet literal is not a constant
./Planets.go:13: const initializer planet literal is not a constant
./Planets.go:14: const initializer planet literal is not a constant

Do you have any idea of how I could do? Thanks

  • 写回答

1条回答 默认 最新

  • douzhenao6515 2018-11-25 19:43
    关注

    Go does not support enums. You should either define your enumerated fields as vars or to ensure immutability, maybe use functions that return a constant result.
    For example:

    type myStruct { ID int }
    
    func EnumValue1() myStruct { 
        return myStruct { 1 } 
    }
    
    func EnumValue2() myStruct { 
        return myStruct { 2 } 
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 自动转发微信群信息到另外一个微信群
  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换