Swift开发程序员iOS开发

Swift 逻辑分支 if / switch

2017-11-08  本文已影响27人  追逐_chase
Swift.png

逻辑分支的分类

if分支语句

  let a = 10;
//错误
//        if a {
//
//            print("进来咩有");
//        }

//条件必须是 bool类型

//正确
if a > 2 {
    
    print("进if语句了吗");
}

if a == 10 {
    
    print("是不是为真");
}else {
    print("不是真的");
}


三目运算符

三目运算符 其实就是 if else的另外一种形式

let a = 1;
a == 1 ? print("是1"):print("不是3");

guard的使用

guard 条件表达式 else {
    // 条换语句
    return/break
}
语句组

var word = 10;
//定义一个函数
func test(word:Int)->Void {
    
    guard word > 9 else {
        
        print("是不是大鱼10");
        return;
    }
    
    print("你看看对不");
    
}

//调用
test(word: word);

//打印结果:你看看对不

switch语句

整型
//***************简单switch*****************
let sex = 1
switch sex {
case 0 :
    print("男")
case 1 :
    print("女")
default :
    print("其他")


//****************一个case可以判断多个值******************

 let sex = 0
switch sex {
case 0, 1:
    print("正常人")
default:
    print("其他")
}

浮点型
let f = 3.14
switch f {
case 3.14:
    print("π")
default:
    print("not π")
}
字符串型
let m = 5
let n = 10
var result = 0

let opration = "+"

switch opration {
    case "+":
        result = m + n
    case "-":
        result = m - n
    case "*":
        result = m * n
    case "/":
        result = m / n
default:
    result = 0
}

print(result)
区间
// ******************区间*****************
let score = 90;
switch score {
case 0..<60:
    print("不及格");
case 60..<80:
    print("及格");
case 80..<90:
    print("良好");
default:
    print("优秀");
}
上一篇下一篇

猜你喜欢

热点阅读