您好,登錄后才能下訂單哦!
// 1.基本用法
let sex = 0 // 0:男 1:女 其他:其他
// ** 1> switch可以不跟() 2> case語句結束后可以不跟break,默認系統會加
switch sex {
case 0:
print("男")
// fallthrough
case 1:
print("女")
default:
print("其他")
}
// 2.基本用法的補充:
// ** 1>如果希望一個case中出現case穿透,那么可以在case語句結束后跟上fallthrough
// ** 2>case后面可以跟多個條件,多個條件以,分割
switch sex {
case 0, 1:
print("正常人")
default:
print("其他")
}
// ** 3.switch可以判斷浮點型
let a : Double = 3.14
switch a {
case 3.14:
print("π")
default:
print("非π")
}
// ** 4.switch可以判斷字符串
let m = 20
let n = 30
let opration = "+"
var result = 0
switch opration {
case "+":
result = m + n
case "-":
result = m - n
case "*":
result = m * n
case "/":
result = m / n
default:
print("非法操作符")
}
// ** 5.switch可以判斷區間和元祖匹配
let score = 93
switch score {
case 0..<60:
print("不及格")
case 60..<80:
print("及格")
case 80..<90:
print("良好")
case 90...100: // 元祖匹配
print("不錯噢")
default:
print("不合理的分數")
}
/*
區間和元祖匹配
var num = 10;
switch num{
case 1...9:
print("個位數")
case 10...99:
print("十位數")
default:
print("其它數")
}
var point = (10, 15)
switch point{
case (0, 0):
print("坐標在原點")
case (1...10, 10...20): // 可以在元祖中再加上區間
print("坐標的X和Y在1~10之間")
case (_, 0): // X可以是任意數
print("坐標的X在X軸上")
default:
print("Other")
}
*/
// **6. Swift: 可以判斷對象類型,
//不可以穿透
//可以不寫break,
var rank = "A"
switch rank{
case "A": //相當于if
print("優")
case "B": // 相當于else if
print("優")
case "C": // 相當于else if
print("優")
default: // 相當于else
print("沒有評級")
}
// ** 7.在case中定義變量不用加大括號
var rank4 = "A"
switch rank4{
case "A":
var num = 10
print("優")
case "B":
print("良")
case "C":
print("差")
default:
print("沒有評級")
}
/*
值綁定
var point = (1, 10)
switch point{
case (var x, 10): // 會將point中X的值賦值給X
print("x= \(x)")
case (var x, var y): // 會將point中XY的值賦值給XY
print("x= \(x) y= \(y)")
case var( x, y):
print("x= \(x) y= \(y)")
default:
print("Other")
}
根據條件綁定
var point = (100, 10)
switch point{
// 只有where后面的條件表達式為真才賦值并執行case后的語句
case var(x, y) where x > y:
print("x= \(x) y= \(y)")
default:
print("Other")
}
*/
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。