最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

IOS  Swift基礎(chǔ)之switch用法詳解

 更新時間:2017年02月24日 08:30:02   作者:yissan  
這篇文章主要介紹了IOS Swift基礎(chǔ)之switch用法詳解的相關(guān)資料,需要的朋友可以參考下

IOS  Swift基礎(chǔ)之switch用法詳解

概述

Swift中的switch語句與Java等語言中的switch有很大的相似點,但是也有不同的地方,并且更加靈活。

Swift中switch的case語句中不需要添加break

Swift中需要考慮所有情況,default是必要的。

case分支可以添加多個條件,用,分割

case不局限與常量,可以使使用范圍

switch里可以使用元組

switch默認(rèn)不需要添加break,執(zhí)行一個case之后就跳出語句,如果想要繼續(xù)下面的語句可以使用fallthrough,但是fallthrough是直接進入下一個case的語句,不會進行case的判斷。感覺這里好坑。

實例代碼

1、不需要break,case里多個值用,分割。default不能省略

let name = "yangqiangyu"

switch name{
case "yangqiangyu","yqy":
  print("This is my name")
default:
  print("This is not my name");
}


//"This is my name\n"

2、case條件里用范圍表達式

let score = 90;

switch score{
case 0:
  print("you got an egg")
case 1..<60:
  print("you failed")
case 60:
  print("Just passed")
case 61..<80:
  print("Just so so")
case 80..<90:
  print("Good")
case 90..<100:
  print("Great")
case 100:
  print("Perfect!")
default:
  print("Error")
}

//輸出結(jié)果:"Great\n"

3、switch使用元組

let point:(x:Int,y:Int) = (x:1,y:1)
switch point{
case (0,0):
  print("It's a origin")
case (_,0)://忽略point中的x值
  print("It's on x-axis.")
case (0,_)://忽略point中的y值
  print("It's on y-axis")
default:
  print("It's just an ordinary point")
  break
}

//輸出結(jié)果:
"It's just an ordinary point\n"

4.switch中的case中需要使用元組中的值

let point2 = (8,0)
switch point2{
case (0,0):
  print("It's a origin")
case (let x,0)://賦值給x
  print("It's on x-axis.")
  print("The x value is \(x)")
case (0,let y)://賦值給y
  print("It's on y-axis")
  print("The y value is \(y)")
case (let x,let y):
  print("The x value is \(x)")
  print("The y value is \(y)")
}

//輸出結(jié)果:
"It's on x-axis.\n"
"The x value is 8\n"

5.fallthrough使用

let score = 90;

switch score{
case 0:
  print("you got an egg")
case 1..<60:
  print("you failed")
case 60:
  print("Just passed")
case 61..<80:
  print("Just so so")
case 80..<90:
  print("Good")
case 90..<100:
  print("Great")
   fallthrough
case 100:
  print("Perfect!")
default:
  print("Error")
}

//輸出
"Great\n"
"Perfect!\n"

總結(jié)

可以發(fā)現(xiàn),Swift中的switch更加靈活和簡潔,使用switch可以方便的處理很多操作。

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

相關(guān)文章

最新評論

中阳县| 沈阳市| 故城县| 冷水江市| 南和县| 苏州市| 胶南市| 志丹县| 黑河市| 永丰县| 神农架林区| 葵青区| 蚌埠市| 平阳县| 克东县| 舒兰市| 黎城县| 嘉义县| 八宿县| 神木县| 独山县| 墨竹工卡县| 麦盖提县| 香格里拉县| 甘谷县| 新津县| 南平市| 海兴县| 华坪县| 泰安市| 汽车| 南江县| 龙口市| 阿坝| 荥经县| 江永县| 清河县| 苍山县| 平乡县| 彭水| 徐汇区|