/** * 出题策略接口。 */ public interface QuestionStrategy { /** * 生成一道数学题目。 * * @return 返回生成的数学题目表达式 */ String generateQuestion(); }