3

所以我在使用 Switch 语句时遇到问题,当我将它与范围一起使用时,我在控制台中收到“致命错误:范围结束索引没有有效的后继”。

var ArrayBytes : [UInt8] = [48 ,48 ,48]
 var SuperArrayMensaje : Array = [[UInt8]]()
var num7BM : Array = [UInt8]()

    for var Cont27 = 0; Cont27 < 800; Cont27++ {

        ArrayBytesReservaSrt = String(Mensaje7BM[Cont27])

        switch Mensaje7BM[Cont27] {

        case 0...9 :
                     num7BM = Array(ArrayBytesReservaSrt.utf8)
                     ArrayBytes.insert(num7BM[0], atIndex: 2)

        case 10...99 :
                     num7BM = Array(ArrayBytesReservaSrt.utf8)
                     ArrayBytes.insert(num7BM[0], atIndex: 1)
                     ArrayBytes.insert(num7BM[1], atIndex: 2)

        case 100...255 : // --> THE problem is here "EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0)"
                     num7BM = Array(ArrayBytesReservaSrt.utf8) 
                     ArrayBytes.insert(num7BM[0], atIndex: 0)
                     ArrayBytes.insert(num7BM[1], atIndex: 1)
                     ArrayBytes.insert(num7BM[2], atIndex: 2)


        default : break

        }

    SuperArrayMensaje.insert(ArrayBytes, atIndex: Cont27)

                ArrayBytes = [48 ,48 ,48]
    }
4

1 回答 1

7

可以使用此MCVE重现该问题:

let u = 255 as UInt8

switch u {
case 0...9: print("one")
case 10...99: print("two")
case 100...255: print("three")
}

在某种程度上,如果我们简单地尝试创建一个覆盖该范围的范围变量,我们就会发现问题:

let r = Range<UInt8>(start: 100, end: 256)

这不编译。首先,我们必须注意构造函数的end参数Range不包含在范围内。

范围100...255相当于100..<256。如果我们尝试构造那个范围,我们会得到编译错误:

整数文字“256”在存储到“UInt8”时溢出

我们无法创建包含该整数类型最大值的范围。有问题的是,没有UInt8值大于255. 这是必需的,因为要包含在一个范围内,它必须小于end该范围的值。也就是说,与<运算符比较时,它必须返回 true。并且没有任何UInt8价值可以做出这样的陈述:255 < nreturn true。因此,255永远不可能在一个类型的范围内UInt8

所以,我们必须找到不同的方法。

作为程序员,我们可以知道我们试图创建的范围代表所有适合的三位十进制数字UInt8,我们可以在default这里使用这种情况:

let u = 255 as UInt8

switch u {
case 0...9: print("one")
case 10...99: print("two")
default: print("three")
}

这似乎是最简单的解决方案。我最喜欢这个选项,因为我们最终不会default遇到一个我们知道永远不会执行的案例。

如果我们真的明确想要一个捕获从100UInt8最大值的所有值的案例,我们也可以这样做:

switch u {
case 0...9: print("one")
case 10...99: print("two")
case 100..<255, 255: print("three")
default: print("how did we end up here?")
}

或者像这样:

switch u {
case 0...9: print("one")
case 10...99: print("two")
case 100...255 as ClosedInterval: print("three")
default: print("default")
}

有关 的更多信息ClosedInterval,请参阅Apple 文档Swift 文档

于 2016-03-30T02:42:30.263 回答