字面量协议

193 阅读1分钟
import Foundtion

// 扩展Int实现Bool字面量协议ExpressibleByBooleanLiteral
extention Int: ExpressibleByBooleanLiteral {
	public init(booleanLiteral value: Bool) {
    	self = value ? 1 : 0
    }
}


// 使用
var num: Int = true