里面有的函数用不了.比如println ,其实是print ,比如toInt,我写是错的只能用Int();来转换.我的是xcode 7,我是新手,只是发现了这个错误.不知道后面有没有不同的地方.
2016-04-05
声明函数:swap( inout a:Int , inout b:Int )
调用: swap(&x , &y)
调用: swap(&x , &y)
2016-03-31
//遍历
for i in -99...99
{
i*i
}
let str7 = "Hello,iMooc!"
for c in str7.characters
{
print(c)
}
for i in -99...99
{
i*i
}
let str7 = "Hello,iMooc!"
for c in str7.characters
{
print(c)
}
2016-03-30
新版 改成
let strRange = Range<String.Index>(str.startIndex..<str.endIndex)
let strRange = Range<String.Index>(str.startIndex..<str.endIndex)
2016-03-29