0
A
回答
7
這個問題真的取決於你在想什麼類型的二維數組,以及你的行的維數。
正確2D陣列
// Init
var arr = new int[5,10];
// Counts
arr.GetLength(0) // Length of first dimension: 5
arr.GetLength(1) // Length of second dimension: 10
鐵血 「2D」 陣列
// Init
var arr = new int[3][];
// Initially arr[0],arr[1],arr[2] is null, so we have to intialize them:
arr[0] = new int[5];
arr[1] = new int[4];
arr[2] = new int[2];
// Counts
arr.Length // Length of first dimension
// In this case the "second dimension" (if you can call it that) is of variable size
arr[0].Length // Length: 5
arr[1].Length // Length: 4
arr[2].Length // Length: 2
+0
謝謝,2d數組在C#中有很大不同# – CodeKingPlusPlus 2012-02-18 17:54:20
+0
@CodeKingPlusPlus不客氣:-) – 2012-02-18 17:55:06
0
這也將工作,
string[,] a = new string[,]
{
{"ant", "aunt"},
{"Sam", "Samantha"},
{"clozapine", "quetiapine"},
{"flomax", "volmax"},
{"toradol", "tramadol"}
};
// a[1,1] is equal to Samantha
相關問題
- 1. 訪問二維數組用C
- 2. 訪問二維數組
- 3. 訪問二維數組PHP
- 4. c中的二維到一維數組
- 5. 訪問二維數組中的對象?
- 6. Perl中的二維數組訪問
- 7. C++二維數組問題
- 8. iOS僅在一個二維數組陣列中訪問
- 9. NSMutableArray - 二維數組訪問問題
- 10. 在C中分配二維數組中的一維數組#
- 11. C++中的二維數組
- 12. c中的二維數組#
- 13. C++中的二維數組
- 14. 訪問NumPy的二維數組項
- 15. 二維數組和C中的指針 - 如何訪問元素?
- 16. PHP:從函數訪問二維數組
- 17. 訪問二維數組就像合法的一維數組一樣嗎?
- 18. 搜索一個二維數組C++
- 19. C中的二維數組如何變成一維數組?
- 20. 指向一個二維數組中的數組C
- 21. C - 按一維排序二維數組
- 22. C - 二維數組
- 23. C++二維數組
- 24. 大會:訪問二維數組
- 25. 訪問二維數組JSON使用JavaScript
- 26. 訪問在JSON文件二維數組
- 27. 訪問二維數組在PHP
- 28. 訪問二維固定字節數組
- 29. 二維數組中的訪問數據問題
- 30. 在另一個二維數組中放置一個二維數組java
這是一個很好的資源:> [HTTP ://www.dotnetperls.com/2d-array](HTTP://www.dotnetperls .com/2d-array) – Bit 2012-02-18 17:31:10