摘要: 1、基本用法 //enum direction { // case north // case south // case west // case east //} 等价于下面写法 enum direction { case north,south,west,east } var dir = di 阅读全文
posted @ 2019-08-12 17:54 ZhangShengjie 阅读(1226) 评论(0) 推荐(0) 编辑