0

たとえば、次のような char 配列があるとします。 [abdc] この配列の 'c' のインデックスは (0,1) になります。その 0 を整数とどのように比較しますか?

4

1 に答える 1

0

これはあなたが探しているものですか?

public class jtest
{
  public static void main(String args[])
  {
    new jtest();
  }

  public jtest()
  {
    char[][] myChars = {{'a', 'b'}, {'c', 'd'}};

    // myChars[x][y]
    for (int x = 0; x < myChars.length; x++)
    {
      for (int y = 0; y < myChars[0].length; y++)
      {
        if (x == 1) // compare the index value of X with some integer
          System.out.println(myChars[x][y]);
      }
    }
  }
}
于 2012-12-18T02:59:04.400 に答える