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

📄 dbobject.java

📁 数据结构与算法Java语言版(美)Adam Drozdek著
💻 JAVA
字号:
import java.io.*;public interface DbObject {    public void writeToFile(RandomAccessFile out) throws IOException;    public void readFromFile(RandomAccessFile in) throws IOException;    public void readFromConsole() throws IOException;    public void writeLegibly() throws IOException;    public void readKey() throws IOException;    public void copy(DbObject[] db);    public int size();}

⌨️ 快捷键说明

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