你如何在 swift 中执行 println() 2
How do you do println() in swift 2
我似乎无法在 Swift 2.
中找到如何做 println()
我试过println(helloworld)
那不行
helloworld 是一个变量
是print("hello world")
。它在 swift 2.0 中有所更改,您需要查看 Apple 的网站。把 print()
代替 println()
不再 println()
按照苹果 documentation :
在 Swift 2.0 中有
print("Hello")
对于新行你可以设置标志
print("Hello", appendNewline: false)
Declaration
func print(_ value: T, appendNewline appendNewline: Bool)
Discussion
The textual representation is obtained from the value using its
protocol conformances, in the following order of preference:
Streamable, CustomStringConvertible, CustomDebugStringConvertible. If
none of these conformances are found, a default text representation is
constructed in an implementation-defined way, based on the type kind
and structure.
使用引号:
println("helloworld")
在 swift 2.0 中,使用 print():
print("helloworld")
使用 Xcode 7.0 Beta 6,我的解决方案,包括摆脱烦人的换行符:
我似乎无法在 Swift 2.
中找到如何做println()
我试过println(helloworld)
那不行
helloworld 是一个变量
是print("hello world")
。它在 swift 2.0 中有所更改,您需要查看 Apple 的网站。把 print()
代替 println()
不再 println()
按照苹果 documentation :
在 Swift 2.0 中有
print("Hello")
对于新行你可以设置标志
print("Hello", appendNewline: false)
Declaration
func print(_ value: T, appendNewline appendNewline: Bool)
Discussion
The textual representation is obtained from the value using its protocol conformances, in the following order of preference: Streamable, CustomStringConvertible, CustomDebugStringConvertible. If none of these conformances are found, a default text representation is constructed in an implementation-defined way, based on the type kind and structure.
使用引号:
println("helloworld")
在 swift 2.0 中,使用 print():
print("helloworld")
使用 Xcode 7.0 Beta 6,我的解决方案,包括摆脱烦人的换行符: