infoItem.java
上传用户:cctqzzy
上传日期:2022-03-14
资源大小:12198k
文件大小:1k
- package chapter2;
- // FileName : infoItem.java
- // Function : 索引项类,包括存储位置和后续指针成员变量。
- // 一系列参数设置和获取的接口。
- public class infoItem {
- public int fileID; // 文件编号
- public int offset; // 文件偏移
- infoItem next; // 后续节点指针
- public infoItem(){ // 默认初始化
- fileID = 0;
- offset = 0;
- next = null;
- }
-
- public infoItem(int id , int pos) // 参数初始化
- {
- fileID = id;
- offset = pos;
- next = null;
- }
- public void set_next( infoItem param ) // 设置下一项
- {
- next = param;
- }
-
- public int get_id() // 获取编号
- {
- return fileID;
- }
- public int get_pos() // 获取偏移
- {
- return offset;
- }
-
- public infoItem get_next() // 获取下一项
- {
- return next;
- }
-
- };