我似乎无法在Swift 2中找到如何做println()
。
我尝试过println(helloworld)
这不起作用
helloworld是一个变量
答案 0 :(得分:20)
不再println()
根据苹果documentation:
在Swift 2.0中有
print("Hello")
对于新行,您可以设置标记
print("Hello", appendNewline: false)
声明
func print(_ value:T,appendNewline appendNewline:Bool)
讨论
文本表示是使用其从值获得的 协议一致性,按以下优先顺序排列: Streamable,CustomStringConvertible,CustomDebugStringConvertible。如果 没有找到这些一致性,默认文本表示是 基于类型类型以实现定义的方式构造 和结构。
答案 1 :(得分:16)
它的print("hello world")
。它在swift 2.0中发生了变化,您需要查看Apple的网站。放print()
而不是println()
答案 2 :(得分:4)
使用引号:
println("helloworld")
在swift 2.0中,使用print():
print("helloworld")
答案 3 :(得分:4)