标签: java
我试图将字节缓冲区存储到二维数组中。
byte[][] input = new byte[128][]; int index = 3; ByteBuffer b = new ByteBuffer.allocate(128); b.limit(128); b.put.... input[index][] = b.get();
我在第二个[]获得了非法的表达式错误启动。
答案 0 :(得分:1)
您的语法错误,应为input[index] = b.get();。
input[index] = b.get();