码迷,mamicode.com
首页 > 其他好文 > 详细

next enum in swift

时间:2014-06-06 09:07:38      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:c   a   ext   int   for   it   

```cpp enum Iter: Int{ case s1=0, s2, s3, s4 mutating func next(){ if self == .s4 { self = .s1 return } self = Iter.fromRaw(self.toRaw()+1)! } }

var s = Iter.s1

for i in 1 .. 10 { println(s.toRaw()) s.next() } ```

博客园的编辑器支持好简陋

next enum in swift,布布扣,bubuko.com

next enum in swift

标签:c   a   ext   int   for   it   

原文地址:http://www.cnblogs.com/lightlfyan/p/3767555.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!