码迷,mamicode.com
首页 > 编程语言 > 详细

Swift 中的开关语句switch在swift中的使用

时间:2014-08-22 00:02:05      阅读:373      评论:0      收藏:0      [点我收藏+]

标签:style   color   使用   amp   log   ad   sp   on   

在swift 中使用switch 开关语句在进行匹配的时候不需要在匹配成功的地方加上break了,在swift中它会自动在匹配成功的地方跳出去。不会在向下面执行

example:

“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 sandwich."
case let x where x.hasSuffix("pepper"):
let vegetableComment = "Is it a spicy \(x)?" //在此处跳出开关语句不在往下面执行
default:
let vegetableComment = "Everything tastes good in soup."
}”

 

Swift 中的开关语句switch在swift中的使用,布布扣,bubuko.com

Swift 中的开关语句switch在swift中的使用

标签:style   color   使用   amp   log   ad   sp   on   

原文地址:http://www.cnblogs.com/qiaojiu9/p/3928255.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!