Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我声明了一个 16 位有符号整数数组,其元素可能达到数百万。我一直在将数组声明为 Long 类型,因为我一直在考虑元素长度而不是每个单独元素的限制。根据元素类型声明数组的类型是否正确?
谢谢
数组的元素类型与索引的类型无关。 C# 数组仅支持 32 位int索引。
int
您应该使用short[].
short[]