⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bebytewriter.java

📁 专业汽车级嵌入式操作系统OSEK的源代码
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -