swift – 如何让x在x.hasSuffix(“pepper”)中工作

在下面的代码块中,我无法理解let x其中x.hasSuffix(“pepper”).
let vegetable = "red pepper"

switch vegetable {
    case "celery":
        let vegetableComment = "Add some raisins and make ants on a log."
    case "cucumber","watercress":
        let vegetableComment = "That would make a good tea sandwhich"
    case let x where x.hasSuffix("pepper"):
        let vegetableComment = "Is it a spicy \(x)"
    default:
        let vegetableComment = "Everything tastes good in soup."
}

Console output

vegetableComment: Is it a spicy red pepper

似乎发生了以下逻辑.

x = vegetable
if (x's suffix == 'pepper') 
    run case

有人能帮我解释一下吗?

vegetable是一个隐式String.它和你写的一样:
var vegetable: String = "red pepper"

hasSuffix声明为func hasSuffix(后缀:String) – > Bool因此返回Bool. where关键字指定其他要求,并且只能在switch语句中使用.

因为所有这些都是泛滥的,所以将vegetable变量赋给x(let x).

您可以阅读有关where的更多信息并切换here.

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...