私はJavaを学ぼうとしていますが、コンストラクタに配列を渡すことに問題があります。たとえば :コンストラクタに配列を渡すには?
Applicationクラス: 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];
}
}
あなたは、私はそれを行うことができますどのように私を見ることができれば、私は非常に感謝したいです。
のようにそれを呼び出します。 – Bhushan