欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

IOS Swift基础之switch用法详解

程序员文章站 2024-02-15 20:00:34
ios  swift基础之switch用法详解 概述 swift中的switch语句与java等语言中的switch有很大的相似点,但是也有不同的地方,并且更...

ios  swift基础之switch用法详解

概述

swift中的switch语句与java等语言中的switch有很大的相似点,但是也有不同的地方,并且更加灵活。

swift中switch的case语句中不需要添加break

swift中需要考虑所有情况,default是必要的。

case分支可以添加多个条件,用,分割

case不局限与常量,可以使使用范围

switch里可以使用元组

switch默认不需要添加break,执行一个case之后就跳出语句,如果想要继续下面的语句可以使用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")
}

//输出结果:"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
}

//输出结果:
"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)")
}

//输出结果:
"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"

总结

可以发现,swift中的switch更加灵活和简洁,使用switch可以方便的处理很多操作。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!