/**
枚举的基本语法
Class one 一等类型
struct Method {
}
class Method {
比c语言丰富
*/
enum Method {
case Add
case Sub
case Mul
case Div
}
enum Method1 {
// 可以用逗号隔开
case ProductType,ConcernType
}
// 变量类型,前面写个 .
var m0: Method = .Add
var mm: Method1 = Method1.ConcernType
// 不写变量类型,让系统推断
var m1 = Method.Sub
var m2 = Method1.ProductType
print("m0==\(m0)")
print("mm==\(mm)")
print("m1==\(m1)")
print("m2==\(m2)")
原文链接:/swift/322443.html