用策略模式實現代碼 if/else優化

interface Strategy { void run() throws Exception; } class FastStrategy implements Strategy { @Override void run() throws Exception { // 快速執行邏輯 } } class NormalStrategy implements Strategy { @Override
相關文章
相關標籤/搜索