intSystem.Int16System.Int32System.Int64 之间的区别是什么?除了它们的大小?

最佳答案

每种类型的整数都有不同的存储容量范围

   Type      Capacity

   Int16 -- (-32,768 to +32,767)

   Int32 -- (-2,147,483,648 to +2,147,483,647)

   Int64 -- (-9,223,372,036,854,775,808 to +9,223,372,036,854,775,807)

正如 James Sutherland 在 his answer 中所述:

关于c# - int、Int16、Int32 和 Int64 之间有什么区别?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9696660/

10-13 08:17