字面量协议 iOS民工 2020-12-22 193 阅读1分钟 import Foundtion // 扩展Int实现Bool字面量协议ExpressibleByBooleanLiteral extention Int: ExpressibleByBooleanLiteral { public init(booleanLiteral value: Bool) { self = value ? 1 : 0 } } // 使用 var num: Int = true