目前,我有:

outByte.writeInt(0x49492a00);
outByte.writeInt(0x08000000);


但是我希望能够在同一行上编写所有这些内容。但:

outByte.writeLong(0x49492a0008000000)


在Eclipse中用红色下划线标记,因此不正确。是否可以使用writeLong()一起写这两行?

最佳答案

要在源代码中使用long文字,您将需要在常量中附加lL,如下所示:

outByte.writeLong(0x49492a0008000000L)

07-24 19:42