我正在嘗試學習Java,但是在將數組傳遞給構造函數時遇到了問題。 例如:如何將數組傳遞給構造函數?
應用類: byte[][] array = new byte[5][5]; targetClass target = new targetClass(array[5][5]);
目標類:
public class targetClass {
/* Attributes */
private byte[][] array = new byte[5][5];
/* Constructor */
public targetClass (byte[][] array) {
this.array[5][5] = array[5][5];
}
}
我會非常感激,如果你能告訴我怎樣才能做到這一點。
既然你學習Java的類名應該總是以大寫字母開頭。 – Bhushan