笔者使用的是最新版本的Xcode7.3
使用countElements时出现编译时错误
后来百度一下,方知其已被characters.count替换了。使用方法如下:
func printAndCount(stringToPrint:String)->Int
{
print(stringToPrint)
return (stringToPrint).characters.count
}
print(printAndCount("Hello,World"))
输出如下:
Hello,World
11
Program ended with exit code: 0
原文链接:https://www.f2er.com/swift/323774.html