fall through:跳转
如:
switch(){
case 1:
break:
case 2:
fall through
break
case 3:
}
执行fall through时无视break继续往下执行
原文链接:https://www.f2er.com/swift/323060.htmlfall through:跳转
如:
switch(){
case 1:
break:
case 2:
fall through
break
case 3:
}
执行fall through时无视break继续往下执行
原文链接:https://www.f2er.com/swift/323060.html