Swift Compiler Error Integer literal overflows when stored into 'UInt8'

前端之家收集整理的这篇文章主要介绍了Swift Compiler Error Integer literal overflows when stored into 'UInt8'前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Swift 报错:Swift Compiler Error Integer literal overflows when stored into 'UInt8'

错误代码:

let a: UInt8 = 1_000


UInt8的取值范围是0~255,当复制超过其存储范围时,就会报错UInt8存不了这么大的数.所以在平常操作中,要注意常量和变量的取值范围. 原文链接:https://www.f2er.com/swift/326737.html

猜你在找的Swift相关文章