为什么在Swift中UInt64 max等于-1?

时间:2014-06-14 10:23:11

标签: swift read-eval-print-loop swift-playground

当我在新线路上输入以下内容时,使用Swift,在终端或操场上,

UInt64.max

我得到-1的结果值。

这是一个错误吗?


修改示例

$ xcrun swift
Welcome to Swift!  Type :help for assistance.
  1> UInt64.max / 2
$R1: UInt64 = 9223372036854775807
  2> UInt64.max / 2 + 1
$R2: UInt64 = -9223372036854775808
  3> UInt64.max
$R3: UInt64 = -1
  4> println(UInt64.max / 2)
9223372036854775807
  5> println(UInt64.max / 2 + 1)
9223372036854775808
  6> println(UInt64.max)
18446744073709551615

4 个答案:

答案 0 :(得分:6)

我认为这是终端和游乐场的错误。

但是,在终端和游乐场中,println的输出是正确的(18446744073709551615)。

答案 1 :(得分:0)

看起来像我遇到的任何无符号类型的错误。

echo“UInt8(255)”| xcrun swift

也会打印-1

答案 2 :(得分:-1)

这是因为你的处理器是64位而UInt是64位* 2。 Int类型不能运行此数字,它超出范围。

答案 3 :(得分:-1)

即使使用Swift 2.2中的REPL,这仍然是一个错误。请参阅https://bugs.swift.org/browse/SR-1007https://bugs.swift.org/browse/SR-1138

使用XCode 7.3修复了Playgrounds。