我想要列举一些国家/地区,例如:
enum Country: Int {
case Afghanistan
case Albania
case Algeria
case Andorra
//...
}
我选择Int
作为rawValue类型有两个主要原因:
我想确定此枚举的总数,使用Int
作为rawValue类型简化了这一点:
enum Country: Int {
case Afghanistan
// other cases
static let count: Int = {
var max: Int = 0
while let _ = Country(rawValue: max) { max = max + 1 }
return max
}()
}
我还需要一个代表一个国家的复杂数据结构,并且有一个数组结构的数组。我可以使用Int-valued枚举轻松地从这个数组下标访问某个国家。
struct CountryData {
var population: Int
var GDP: Float
}
var countries: [CountryData]
print(countries[Country.Afghanistan.rawValue].population)
现在,我不知何故需要将某个Country
个案转换为String
(又名
let a = Country.Afghanistan.description // is "Afghanistan"
由于有很多情况,手动编写类似转换表的函数似乎是不可接受的。
那么,我怎样才能立刻获得这些功能?:
case
。使用enum Country: Int
满足1,2,3但不满足4
使用enum Country: String
满足1,3,4但不满足2(使用Dictionary而不是Array)
答案 0 :(得分:7)
要将enum's
个案打印为String
,请使用:
String(describing: Country.Afghanistan)
您可以创建类似以下内容的数据结构:
enum Country
{
case Afghanistan
case Albania
case Algeria
case Andorra
}
struct CountryData
{
var name : Country
var population: Int
var GDP: Float
}
var countries = [CountryData]()
countries.append(CountryData(name: .Afghanistan, population: 2000, GDP: 23.1))
print(countries[0].name)