最佳答案
Can you inherit enum in Swift? What are the rules that one should be aware of with regards to enum inheritance?
The following test code:
enum TemperatureUnit: Int {
case Kelvin, Celcius, Farenheit
}
enum TemperatureSubunit : Temperature {
}
generates
error: type 'TemperatureSubunit' does not conform to protocol 'RawRepresentable'