package com.pattern.InterpreterPattern.materials.po; /** * 表达 * * @author lx * @date 2021/10/13 9:20 **/ public interface Expression { /** * 解释 * * @param context 正文 * @return true、false */ boolean interpret(String context); }