What is the difference between Int32 and UInt32?

后端 未结 5 1595
一整个雨季
一整个雨季 2021-02-07 10:39

What is the difference between Int32 and UInt32?

If they are the same with capacity range capabilities, the question is for what reason U

5条回答
  •  萌比男神i
    2021-02-07 11:06

    An integer is -2147483648 to 2147483647 and an unsigned integer is 0 to 4294967295.

    This article might help you.

提交回复
热议问题