gpt4 book ai didi

string - Swift String 常量的类型是否与 String 文字不同?

转载 作者:搜寻专家 更新时间:2023-10-31 22:07:02 27 4
gpt4 key购买 nike

在 Swift 2.1 中,下面的代码片段会产生错误。

var str = "Hello, playground!"

// Success Case
if "!" == str.characters.last {
print("Tone it down please")
}

// Fail Case
let bang = "!"

if bang == str.characters.last { // this line won't compile
print("Tone it down please")
}

编译器错误说:

Binary operator '==' cannot be applied to operands of type 'String' and '_Element?'

那么在这种情况下使用常量而不是文字的推荐方法是什么? (我正在学习 Swift,所以如果有一种 Swift-er 方法来处理这种比较检查,请随时提及。)

谢谢!

最佳答案

对于你的“失败案例”,这是因为 str.characters.last 是一个可选的并且是一个 Character,但是 bang 是一个 String

您可以安全地解包并与 if let ... where 进行比较,并使用 String()Character 更改为 String 用于比较:

if let last = str.characters.last where String(last) == bang {
print("Tone it down please")
}

关于string - Swift String 常量的类型是否与 String 文字不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34075811/

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