美文网首页
where判断

where判断

作者: LimChihi | 来源:发表于2016-08-26 18:02 被阅读9次
    let point = (3,3)
    switch point {
    case let (x,y) where x == y
        print("xxxxx")
    default:
        print("yyyyy")
    }
    
    let age = 123
    if case 10...19 = age where age >= 10 {
    print("acv")
    }
    

    if case xxx = age是把age判断一下在不在case

    where就是继续限定条件在一个bool的范围内

    相关文章

      网友评论

          本文标题:where判断

          本文链接:https://www.haomeiwen.com/subject/wjezsttx.html