示例#1
0
 public override BooleanExp Replace(BooleanExp exp, char c)
 {
     throw new NotImplementedException();
 }
示例#2
0
 public abstract BooleanExp Replace(BooleanExp exp, char c);
示例#3
0
 public AndExpression(BooleanExp op1, BooleanExp op2)
 {
     _operand1 = op1;
     _operand2 = op2;
 }
示例#4
0
 public NotExpression(BooleanExp exp)
 {
     this.exp = exp;
 }