Swift Compiler Error Binary oprator '+' cannot be applied to operands of type 'UInt16' and 'UInt8'

来源:互联网 发布:怎么开淘宝店铺步骤 编辑:程序博客网 时间:2024/06/04 23:14

1. Swift报错:   Swift Compiler Error Binary oprator '+' cannot be applied to operands of type 'UInt16' and 'UInt8'

错误写法:

       let a:UInt16 =1_000

       let b:UInt8 =1

       let sum = a + b

       println("sum =\(sum)")


错误原因: 不同类型的变量和常量可以存储不同范围的数字.如果数字超出了可存储的范围,编译的时候会报错.所以你必须根据不同情况选择性使用数值类型转换.

正确写法: 

       let a:UInt16 =1_000

       let b:UInt8 =1

       let sum = a +UInt16(b)

       println("sum =\(sum)")


2. Swift报错:   Swift Compiler Error Binary oprator '+' cannot be applied to operands of type 'Int' and 'Double'

错误写法:

        let a =123

       let b = 0.456

       let sum = a + b

       println("sum = \(sum)")

错误原因: 加好两边的数的类型必须相同,不能直接相加.所以int和double类型不能直接相加.

正确写法: 

        let a =123

       let b = 0.456

       let sum = Double(a) + b

       println("sum = \(sum)")


注意:  区别    let sum =123 +0.456 相这样写是正确的,因为数字字面量123本身没有类型,它们会在编译器需要求值的时候被推断.

以上的Double(a) UInt16(b) 这样的someType(ofInitialValue)是调用Swift构造器并传入一个初始化的默认方法.在语言内部,UInt16有一个构造器,可以接收一个UInt8类型的值,所以这个构造器可以用现有的UInt8来创建一个新的UInt16.注意你并不能传入任意的值,只能传入UInt16内部有对应构造器的值.不过你可以扩展现有的类型来让它可以接收其他类型的值(包括自定义的类型)




0 0