标签: swift switch-statement
如果...0为0及其之前的所有内容,而1...为1及其以上的所有内容,为什么此开关不详尽?
...0
1...
let i = 1 switch i { case ...0: print("low") case 1...: print("high") }
编译器确信我需要添加一个默认子句。