gpt4 book ai didi

swift - 在 Swift 3 中打印

转载 作者:IT王子 更新时间:2023-10-29 05:42:25 24 4
gpt4 key购买 nike

我想知道这两种在 Swift 中打印对象的方式有什么不同。结果似乎相同。

var myName : String = "yohoo" 
print ("My name is \(myName).")

print ("My name is ", myName, ".")

最佳答案

几乎没有功能上的区别,逗号只是在字符串之前或之后输入一个空格。

let name = "John"

// both print "Hello John"
print("Hello", name)
print("Hello \(name)")

关于swift - 在 Swift 3 中打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43963356/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com