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

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内部有对应构造器的值.不过你可以扩展现有的类型来让它可以接收其他类型的值(包括自定义的类型)

版权声明:本文为博主原创文章,未经博主允许不得转载。

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

时间: 2024-10-05 04:58:26

Swift Compiler Error Binary oprator '+' cannot be applied to operands of type 'UInt16' and 'UInt8'的相关文章

Swift Compiler Error Arithmetic operation '** ' (on type '**') results in an overflow (溢出运算符'&+')

Swift Compiler Error Arithmetic operation '****** ' (on type '****') results in an overflow 错误代码: 错误原因是数值运算中出现溢出情况.其结果超过了UInt8的0~255的范围. 和OC不同的是默认不允许在运算中数值溢出.但可以使用溢出运算符来运算 版权声明:本文为博主原创文章,未经博主允许不得转载. Swift Compiler Error Arithmetic operation '** ' (on

idea报错:error java compilation failed internal java compiler error

idea下面报如下问题 error java compilation failed internal java compiler error 解决办法:Setting->Compiler->Java Compiler,发现有的module是1.7的是1.6的,重新删除再导入好了

Internal compiler error. See the console log for more information.

今天遇到unity3d报Internal compiler error. See the console log for more information.错误信息. 但根据提示在对应的地方却找不到相应的错误,后来仔细查看代码后发现是一处类型强制转换引起的,改正后就再没报错,,,有点莫名其妙.

idea--internal java compiler error

internal java compiler error. 解决: idea,File--Settings--Java Compiler

c++ builder 2010 错误 F1004 Internal compiler error at 0x9740d99 with base 0x9

今天遇到一个奇怪的问题,拷贝项目后,在修改,会出现F1004 Internal compiler error at 0x9740d99 with base 0x9 ,不管怎么改,删除改动,都没用,关闭c++builder 2010,重启后,还是一样. 折腾好久,重新做项目拷贝,只是把项目名称(包括文件夹)中的 - 改成了 _ 能编译成功,这时我在去改用出错的项目名称,发现又可以编译成功. 这是什么坑啊.......NDY

安装lxml时gcc: internal compiler error: Killed (program cc1)的解决方法

在安装lxml时出现如下错误 gcc: internal compiler error: Killed (program cc1) 通过查看dmesg发现下述错误信息[2517343.500178] Out of memory: Kill process 5051 (cc1) score 632 or sacrifice child[2517343.501833] Killed process 5051 (cc1) total-vm:471664kB, anon-rss:326648kB, fi

解决: g++: internal compiler error: Killed (program cc1plus)

解决: g++: internal compiler error: Killed (program cc1plus) 标签: linux 2015-08-07 14:04 4281人阅读 评论(0) 收藏 举报  分类: linux(38)  g++: internal compiler error: Killed (program cc1plus)Please submit a full bug report, 主要原因大体上是因为内存不足,有点坑 临时使用交换分区来解决吧 sudo dd i

Python 文件操作Error: binary mode doesn't take an encoding argument

Python 报错:ValueError: binary mode doesn't take an encoding argument 在运行文件操作相关功能时报错:ValueError: binary mode doesn't take an encoding argument 上代码: >>> with open("course_info","rb+",encoding="utf-8")as f: #rb+操作时不支持指定e

在安装程序时g++: internal compiler error: Killed (program cc1plus) Please submit a full bug report

g++: internal compiler error: Killed (program cc1plus) Please submit a full bug report 问题原因是因为内存不足 使用交换分区来解决: sudo dd if=/dev/zero of=/swapfile bs=64M count=16 #count的大小就是增加的swap空间的大小,64M是块大小,所以空间大小是bs*count=1024MB sudo mkswap /swapfile #把刚才空间格式化成swa