本文介绍了为什么十进制数类型为Int64时,十六进制或二进制数为Uint64?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

julia> typeof(-0b111)
Uint64

julia> typeof(-0x7)
Uint64

julia> typeof(-7)
Int64

我发现这个结果有点令人惊讶.为什么数字的数字底数决定带符号或不带符号?

I find this result a bit surprising. Why does the numeric base of the number determine signed or unsgined-ness?

推荐答案

这是预期的行为:

http://docs.julialang .org/en/latest/manual/integers-and-floating-point-numbers/#integers

...似乎有点奇怪.

...seems like a bit of an odd choice.

这篇关于为什么十进制数类型为Int64时,十六进制或二进制数为Uint64?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 08:42