Different behavior of ByteBuffer for Run and Debug

前端 未结 0 330
半阙折子戏
半阙折子戏 2021-01-30 10:16
byte[] arr;

ByteBuffer buffer = ByteBuffer.allocate(10);
buffer.put((byte) 0x00);
buffer.put(new byte[] {0x01, 0x02});
buffer.put(new byte[] {0x03, 0x04, 0x05});
buffer         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题