```cppenum Iter: Int{ case s1=0, s2, s3, s4
mutating func next(){ if self == .s4 { self = .s1 return } ...
分类:
其他好文 时间:
2014-06-06 09:07:38
阅读次数:
215
协议 Swift 使用protocol定义协议:1 protocol
ExampleProtocol {2 var simpleDescription: String { get }3 mutating func adjust
()4 }类型、枚举和结构都可以实现(adopt)协议...
分类:
其他好文 时间:
2014-06-06 07:48:38
阅读次数:
302
protocol Container { typealias ItemType mutating
func append(item: ItemType) mutating func removelast() -> ItemType var count:
Int {get} ...
分类:
其他好文 时间:
2014-06-05 20:10:14
阅读次数:
319