我正在使用的代碼如下。我覺得這應該很簡單,但本週的焦點集中在難以置信的困難時刻,需要一些幫助。類和2維數組
我無法在嵌套for循環中正確設置pt.x或pt.y的值。 IDEA告訴我該符號無法解析。該類是從包中只識別該類的另一個java文件標識的。其計算方法如下:
public class pointClass {
class point{
int x;
int y;
int z;
}
}
(添加文本來證明這些是2個獨立的文件)
這是一個課堂作業,但我不共享整個分配,正是我需要幫助。我在努力學習,沒有爲我完成任何事情。
public class main {
public static void main (String args[]){
ArrayList<pointClass.point> pointlist = new ArrayList<>();
//Creating map
int row = 40;
int col = 40;
int [][] bigarray = new int [row] [col];
//iterating through map
for (int i = 0; i < row; i++;){
for (int j=0; j< col; j++){
pointClass pt = new pointClass.point;
pt.x = row;
pt.y = col;
pt.z = ;//RNG HERE//
}
}
我該如何更正確地識別這些類屬性?對於上下文,該代碼創建一個40x40數組,併爲每個數字分配一個隨機值。將添加另一個代碼節以打印2D數組。
:考慮使用以下方法嗎? – shmosel