gpt4 book ai didi

c# - Array.GetLength() 和 Array.Length 有什么区别?

转载 作者:IT王子 更新时间:2023-10-29 04:03:09 28 4
gpt4 key购买 nike

如何在 C# 中使用 Array.GetLength 函数?

Length 属性和 GetLength 函数有什么区别?

最佳答案

GetLength 采用一个整数来指定您正在查询的数组的维度并返回其长度。 Length 属性返回数组中项目的总数:

int[,,] a = new int[10,11,12];
Console.WriteLine(a.Length); // 1320
Console.WriteLine(a.GetLength(0)); // 10
Console.WriteLine(a.GetLength(1)); // 11
Console.WriteLine(a.GetLength(2)); // 12

关于c# - Array.GetLength() 和 Array.Length 有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2044591/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com