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

swift 附属脚本

时间:2014-08-05 18:12:19      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   div   log   res   对象   swift   

附属脚本是访问对象,集合或序列的快捷方式

struct STest{
    let constValue:Int
    subscript(count:Int)->Int{
        return count*constValue
    }
}
let obj = STest(constValue:3)
let res:Int = obj[2]
println("\(res)")

 

swift 附属脚本,布布扣,bubuko.com

swift 附属脚本

标签:style   blog   color   div   log   res   对象   swift   

原文地址:http://www.cnblogs.com/zhidao-chen/p/3892476.html

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