2024年3月17日
摘要: 概述 策略模式 (Strategy Pattern) 又称 Policy,它定义并封装每一种算法,这些算法可以相互替换。 优点:符合开闭原则。 缺点:需要知道并理解每个算法才能选择合适的算法。 interface Sort { abstract void sort(int[] a); } class 阅读全文
posted @ 2024-03-17 10:54 x-yun 阅读(4) 评论(0) 推荐(0) 编辑