码迷,mamicode.com
首页 >  
搜索关键字:mutating    ( 43个结果
next enum in swift
```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)和扩展(extension)
协议 Swift 使用protocol定义协议:1 protocol ExampleProtocol {2 var simpleDescription: String { get }3 mutating func adjust ()4 }类型、枚举和结构都可以实现(adopt)协议...
分类:其他好文   时间:2014-06-06 07:48:38    阅读次数:302
swift的泛型貌似还差点意思
protocol Container { typealias ItemType mutating func append(item: ItemType) mutating func removelast() -> ItemType var count: Int {get} ...
分类:其他好文   时间:2014-06-05 20:10:14    阅读次数:319
43条   上一页 1 ... 3 4 5
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!