// 如果栈内存在优先级较高的符号, 需要将数据弹出栈
int priority = op.priority;
for (; lastOperation >= 0; lastOperation--) {
Operation tmp = operations[lastOperation];
if ((tmp != null) && (priority <= tmp.priority)) {
expressionSize -= tmp.process(expressions, expressionSize,
mode);
} else {
break;
}
}