swift Enumerations
Posted feng9exe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift Enumerations相关的知识,希望对你有一定的参考价值。
swift Enumerations
enum、case、switch
CaseIterable allCases
要区别枚举变量和关联值
枚举变量参与枚举运算;
关联值和rawvalue不参与。
Associated Values
case qrCode(String)
case let .qrCode(productCode):
Raw Values
As an alternative to associated values, enumeration cases can come prepopulated with default values (called raw values), which are all of the same type.
同一类型的继承
enum ASCIIControlCharacter: Character
以上是关于swift Enumerations的主要内容,如果未能解决你的问题,请参考以下文章