Swift枚举继承

时间:2015-10-17 21:01:46

标签: ios swift inheritance enums rawrepresentable

你可以在Swift中继承枚举吗?关于枚举继承,应该注意哪些规则?

以下测试代码:

enum TemperatureUnit: Int {
    case Kelvin, Celcius, Farenheit
}

enum TemperatureSubunit : Temperature {  
}

产生

error: type 'TemperatureSubunit' does not conform to protocol 'RawRepresentable'

3 个答案:

答案 0 :(得分:55)

在Swift语言中,我们有Structs,Enum和Classes。 Struct和Enum通过副本传递,但类通过引用传递。只有Classes支持继承,Enum和Struct不支持继承。

因此,要回答您的问题,您不能继承Enum(和Struct类型)。看看这里:

stackOverflow difference classes vs structs

答案 1 :(得分:52)

正如Korpel已经回答的那样,目前Enums不支持实际的继承。所以不可能有一个Enum扩展并继承另一个枚举的情况。

但是,我想补充完成,Enums支持协议,再加上Swift 2中引入的协议扩展和新的面向协议的编程方法(参见this video),可以实现一些类似于继承。这是一种我使用很多来定义UITableViewController:由枚举驱动的技术,指定表的各个部分以及每个部分中的行,以及添加一些有用的行为。请参阅以下示例代码:

import UIKit

protocol TableSection {
    static var rows: [Self] { get }

    var title: String { get }

    var mandatoryField: Bool { get }
}

extension TableSection {
    var mandatoryTitle: String {
        if mandatoryField {
            return "\(title)*"
        } else {
            return title
        }
    }
}

enum RegisterTableSection: Int, TableSection {
    case Username
    case Birthdate
    case Password
    case RepeatPassword

    static var rows: [RegisterTableSection] {
        return [.Username, .Password, .RepeatPassword]
    }

    var title: String {
        switch self {
        case .Username:
            return "Username"
        case .Birthdate:
            return "Date of birth"
        case .Password:
            return "Password"
        case .RepeatPassword:
            return "Repeat password"
        }
    }

    var mandatoryField: Bool {
        switch self {
        case .Username:
            return true
        case .Birthdate:
            return false
        case .Password:
            return true
        case .RepeatPassword:
            return true
        }
    }
}

class ViewController: UITableViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
    }

    override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return 1
    }

    override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return RegisterTableSection.rows.count
    }

    override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        guard let row = RegisterTableSection(rawValue: indexPath.row) else {
            // This should never happen
            return UITableViewCell()
        }

        let cell = UITableViewCell()
        cell.textLabel?.text = row.mandatoryTitle
        return cell

    }
}

前面的代码将呈现下表:

Enum-defined table

请注意,通过实现协议,我们的RegisterTableSection枚举必须为协议中定义的方法和变量提供实现。最有趣的是,它通过mandatoryTitle协议扩展继承变量TableSection的默认实现

我上传了此示例here

的源代码

答案 2 :(得分:35)

看看我的例子,它更容易:Can an enum contain another enum values in Swift?

详细

经过测试:

  • Xcode 9.2,Swift 4和3
  • Xcode 10.2(10E125),Swift 5

解决方案

enum State {
    case started
    case succeeded
    case failed
}

enum ActionState {
    case state(value: State)
    case cancelled
}

结果

ActionState枚举有4个值:

.state(value: .started)
.state(value: .succeeded)
.state(value: .failed)
.cancelled

另一个样本

import Foundation

enum StringCharactersTransformType {
    case upperCase
    case lowerCase
}

enum StringTransformType {
    case state(value: StringCharactersTransformType)
    case normal

    static var upperCase: StringTransformType {
        return .state(value: .upperCase)
    }

    static var lowerCase: StringTransformType {
        return .state(value: .lowerCase)
    }
}

var type = StringTransformType.normal
print(type)
type = .upperCase
print(type)
type = .lowerCase
print(type)

结果

enter image description here enter image description here