agbdelete.java

来自「一个用java编写的从底层开始设计的小型数据库管理系统」· Java 代码 · 共 21 行

JAVA
21
字号

package compiler;

import recordmanagement.Table;

public class AgbDelete implements Algebra {
	private Table table;
	private Condition condition;
	
	public AgbDelete(Table t, Condition con){
		table = t;
		condition = con;
	}
	public Table getTable(){
		return table;
	}
	public Condition getCondition(){
		return condition;
	}
}

⌨️ 快捷键说明

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