存储一个将数组返回到二维数组的函数

时间:2016-04-26 18:15:21

标签: java

我试图将字节缓冲区存储到二维数组中。

byte[][] input = new byte[128][];
int index = 3;

ByteBuffer b = new ByteBuffer.allocate(128); 
b.limit(128);

b.put....

input[index][] = b.get();

我在第二个[]获得了非法的表达式错误启动。

1 个答案:

答案 0 :(得分:1)

您的语法错误,应为input[index] = b.get();