bebytewriter.java
来自「专业汽车级嵌入式操作系统OSEK的源代码」· Java 代码 · 共 36 行
JAVA
36 行
package js.tinyvm.io;import java.io.IOException;import java.io.OutputStream;public class BEByteWriter extends ByteWriter{ public BEByteWriter (OutputStream stream) { super(stream); } // // specific write order // public void writeU1 (int aByte) throws IOException { writeByte(aByte); } public void writeU2 (int aShort) throws IOException { writeShort(aShort); } public void writeU4 (int aInt) throws IOException { writeInt(aInt); } public void writeU8 (long aLong) throws IOException { writeLong(aLong); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?