我在 Java 中有以下类:
public class Cell {
private int x;
private int y;
private int g;
private int h;
public Cell(int x, int y, int g, int h) {
this.x = x;
this.y = y;
this.g = g;
this.h = h;
}
}
我想制作一个二维数组,其中数组的每个元素都是 Cell 类型。但是,我不确定执行此操作的最佳方法是什么。任何见解表示赞赏。
白衣非少年
米琪卡哇伊
相关分类