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

📄 infoitem.java

📁 java实现的web搜索引擎
💻 JAVA
字号:
package com.catking.webSearcher;

public class InfoItem {
	
	private int fileID;
	private int offset;
	private InfoItem next;
	
	public InfoItem(){
		
		this.fileID = 0;
		this.offset = 0;
		this.next = null;
	}
	public InfoItem(int id, int offset){
		
		this.fileID = id;
		this.offset = offset;
		
	}
	
	public void setNext(InfoItem next){
		
		this.next = next;
	}
	public int getFileID() {
		return fileID;
	}
	public int getOffset() {
		return offset;
	}
	public InfoItem getNext() {
		return next;
	}
	
	

}

⌨️ 快捷键说明

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