如何设置循环长度等于2D数组长度?

时间:2016-01-21 13:24:42

标签: java

我有java代码,我可以为内循环的长度

执行此操作
char[][] board = new char[3][3];

for(int a = 0; a < board.length; a++)
{
   for(int b = 0; b < board[a].length; b++)
   {
      //my code here
   }
}

但是当我在c#中尝试

for(int b = 0; b < board[a,].Length; b++)

它会产生错误

  

“语法错误:预期值”

如果我输入值并将其写为

for(int b = 0; b < board[a,b].Length; b++)

它会产生错误

  

char不包含Length

的定义
有人可以帮帮我吗?

试试这个

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            char[,] board = { { 'a', 'b', 'c' }, { 'd', 'e', 'f' }, { 'g', 'h', 'i' } };

            for (int a = 0; a < board.GetLength(0); a++)
            {
                for (int b = 0; b < board.GetLength(1); b++)
                {
                    char test = board[a,b];
                    //my code here
                }
            }
        }
    }
}

1 个答案:

答案 0 :(得分:0)

您可以使用GetLength方法。 见here