📄 t_not.java
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package symbols;import exceptions.ExpressionException;import exceptions.TypeMismatchedException;import java.util.ArrayList;/** * * @author Beeven */public class T_NOT extends Terminal implements TerminalReduce{ public Expr reduce(ArrayList<Expr> stack) throws ExpressionException { int post=stack.size()-1; Expr a=stack.get(post); if(!(a instanceof BoolExpr)) throw new TypeMismatchedException(); BoolExpr be = new BoolExpr(!((BoolExpr)a).value); stack.remove(post); stack.remove(post-1); stack.add(be); return be; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -