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

📄 objectheader.java

📁 这个是perst-269.zip下面的SOURCECODE,和大家分享了。
💻 JAVA
字号:
package org.garret.perst.impl;

class ObjectHeader { 
    static final int sizeof = 8;
    
    static int getSize(byte[] arr, int offs) { 
        return Bytes.unpack4(arr, offs);   
    }
    static void setSize(byte[] arr, int offs, int size) { 
        Bytes.pack4(arr, offs, size);   
    }
    static int getType(byte[] arr, int offs) { 
        return Bytes.unpack4(arr, offs+4);   
    }
    static void setType(byte[] arr, int offs, int type) { 
        Bytes.pack4(arr, offs+4, type);   
    }
}
    

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -