ridscan.java

来自「用java语言简单实现数据库的初步功能」· Java 代码 · 共 21 行

JAVA
21
字号
package simpledb.index.query;import simpledb.record.RID;import simpledb.query.Scan;/**  * A rid-scan is a scan which has an index * as one of its leaves. * @author Edward Sciore * */public interface RidScan extends Scan {		/**	 * Returns the dataRid value obtained from the current	 * index record in the scan.	 * @return the current dataRid value.	 */	public RID getDataRid();}

⌨️ 快捷键说明

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