1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
class Context { private var state: State = UnauthorizedState() var isAuthorized: Bool { get { return state.isAuthorized(self) } } var userId: String? { get { return state.userId(self) } } func changeStateToAuthorized(userId userId: String) { state = AuthorizedState(userId: userId) } func changeStateToUnauthorized() { state = UnauthorizedState() } }
* 状态接口 */ protocol State { func isAuthorized(context: Context) -> Bool func userId(context: Context) -> String? }
class UnauthorizedState: State { func isAuthorized(context: Context) -> Bool { return false } func userId(context: Context) -> String? { return nil } }
class AuthorizedState: State { let userId: String init(userId: String) { self.userId = userId } func isAuthorized(context: Context) -> Bool { return true } func userId(context: Context) -> String? { return userId } }
let context = Context() (context.isAuthorized, context.userId) context.changeStateToAuthorized(userId: "admin") (context.isAuthorized, context.userId) context.changeStateToUnauthorized() (context.isAuthorized, context.userId)
|