1

配列内の最初の null スロットを検索しようとしています。parseInt()これを行うために引用できますか、それとも " stobar[b] == null" を使用しますか?

int[] stobar = new int[100];
for(int b = 0; b < stobar.length; b++)
{
    if(stobar[b] == Integer.parseInt(""))
    {
        stobar[b] = row;
        stobar[b+1] = col;
        break;
    }
}
4

2 に答える 2

8

整数のみを保持できるプリミティブ配列があるため、どちらも希望どおりに機能しません。個別の null 値が必要な場合は、Integer[]代わりに にする必要があります。

于 2013-05-26T16:18:57.407 に答える
1

You can use

Integer[] stobar = new Integer[100];
...

for(int b=0; b<stobar.length; b++ )
{
    if(stobar[b]==null)
    {
      stobar[b] = row;
      stobar[b+1] = col;
      break;
    }
}

Are you sure that you want to use a static array? Maybe an ArrayList is more suitable for you.

I don't know what are you trying but take a look at the following implementation

public class Point
{
  private int row;
  private int col;

  public Point(int row, int col)
  {
    this.row = row;
    this.col = col;
  }

  public static void main(String[] args)
  {
    List<Point> points = new ArrayList<Point>();

    ...
    Point p = new Point(5,8);
    points.add(p);
    ...
  }

}
于 2013-05-26T16:24:22.157 に答える