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.

相关文章

Swift 正式开源!Swift 团队很高兴宣布 Swift 开始开源新篇章。自从苹果发布 Swfit 编程语言,就成为了...
快,快,快!动动您的小手,分享给更多朋友! 苹果去年推出了全新的编程语言Swift,试图让iOS开发更简单...
开发者(KaiFaX) 面向开发者、程序员的专业平台! 和今年年初承诺的一样,苹果贴出了Swift语言的源码,...
本文由@Chun发表于Chun Tips :http://chun.tips/blog/2014/12/11/shi-yong-swift-gou-jian-zi-ding-yi...
本文由CocoaChina译者leon(社区ID)翻译 原文:THE RIGHT WAY TO WRITE A SINGLETON 在之前的帖子里聊过...
本文由CocoaChina译者leon(社区ID)翻译 原文:THE RIGHT WAY TO WRITE A SINGLETON 在之前的帖子里聊过...