摘要: package main import "fmt" //在go语言中没有枚举类型,但是我们可以使用const + iota(常量累加器)来进行模拟 //模拟一个一周的枚举 const ( MONDAY = iota //0 TUESDAY = iota //1 WEDNESDAY = iota // 阅读全文
posted @ 2021-05-18 10:24 压伤的芦苇 阅读(70) 评论(0) 推荐(0)