gpt4 book ai didi

string - 在 Swift 中将数字与字符串连接起来

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

我需要连接一个 StringInt 如下:

let myVariable: Int = 8
return "first " + myVariable

但是编译不通过,报错:

Binary operator '+' cannot be applied to operands of type 'String' and 'Int'

连接 String + Int 的正确方法是什么?

最佳答案

如果你想把一个数字放在一个字符串中,你可以只使用String Interpolation :

return "first \(myVariable)"

关于string - 在 Swift 中将数字与字符串连接起来,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24646794/

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