<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
將每個條件分支的實現作為一個獨立的策略類,然後使用一個上下文物件來選擇要執行的策略。這種方法可以將大量的if else語句轉換為物件之間的互動,從而提高程式碼的可維護性和可延伸性。
範例:
首先,我們定義一個介面來實現所有策略的行為:
public interface PaymentStrategy { void pay(double amount); }
接下來,我們定義具體的策略類來實現不同的支付方式:
public class CreditCardPaymentStrategy implements PaymentStrategy { private String name; private String cardNumber; private String cvv; private String dateOfExpiry; public CreditCardPaymentStrategy(String name, String cardNumber, String cvv, String dateOfExpiry) { this.name = name; this.cardNumber = cardNumber; this.cvv = cvv; this.dateOfExpiry = dateOfExpiry; } public void pay(double amount) { System.out.println(amount + " paid with credit card"); } } public class PayPalPaymentStrategy implements PaymentStrategy { private String emailId; private String password; public PayPalPaymentStrategy(String emailId, String password) { this.emailId = emailId; this.password = password; } public void pay(double amount) { System.out.println(amount + " paid using PayPal"); } } public class CashPaymentStrategy implements PaymentStrategy { public void pay(double amount) { System.out.println(amount + " paid in cash"); } }
現在,我們可以在使用者端程式碼中建立不同的策略物件,並將它們傳遞給一個統一的支付類中,這個支付類會根據傳入的策略物件來呼叫相應的支付方法:
public class ShoppingCart { private List<Item> items; public ShoppingCart() { this.items = new ArrayList<>(); } public void addItem(Item item) { this.items.add(item); } public void removeItem(Item item) { this.items.remove(item); } public double calculateTotal() { double sum = 0; for (Item item : items) { sum += item.getPrice(); } return sum; } public void pay(PaymentStrategy paymentStrategy) { double amount = calculateTotal(); paymentStrategy.pay(amount); } }
現在我們可以使用上述程式碼來建立一個購物車,向其中新增一些商品,然後使用不同的策略來支付:
public class Main { public static void main(String[] args) { ShoppingCart cart = new ShoppingCart(); Item item1 = new Item("1234", 10); Item item2 = new Item("5678", 40); cart.addItem(item1); cart.addItem(item2); // pay by credit card cart.pay(new CreditCardPaymentStrategy("John Doe", "1234567890123456", "786", "12/22")); // pay by PayPal cart.pay(new PayPalPaymentStrategy("myemail@example.com", "mypassword")); // pay in cash cart.pay(new CashPaymentStrategy()); //--------------------------或者提前將不同的策略物件放入map當中,如下 Map<String, PaymentStrategy> paymentStrategies = new HashMap<>(); paymentStrategies.put("creditcard", new CreditCardPaymentStrategy("John Doe", "1234567890123456", "786", "12/22")); paymentStrategies.put("paypal", new PayPalPaymentStrategy("myemail@example.com", "mypassword")); paymentStrategies.put("cash", new CashPaymentStrategy()); String paymentMethod = "creditcard"; // 使用者選擇的支付方式 PaymentStrategy paymentStrategy = paymentStrategies.get(paymentMethod); cart.pay(paymentStrategy); } }
將每個條件分支的實現作為一個獨立的產品類,然後使用一個工廠類來建立具體的產品物件。這種方法可以將大量的if else語句轉換為物件的建立過程,從而提高程式碼的可讀性和可維護性。
範例:
// 定義一個介面 public interface StringProcessor { public void processString(String str); } // 實現介面的具體類 public class LowercaseStringProcessor implements StringProcessor { public void processString(String str) { System.out.println(str.toLowerCase()); } } public class UppercaseStringProcessor implements StringProcessor { public void processString(String str) { System.out.println(str.toUpperCase()); } } public class ReverseStringProcessor implements StringProcessor { public void processString(String str) { StringBuilder sb = new StringBuilder(str); System.out.println(sb.reverse().toString()); } } // 工廠類 public class StringProcessorFactory { public static StringProcessor createStringProcessor(String type) { if (type.equals("lowercase")) { return new LowercaseStringProcessor(); } else if (type.equals("uppercase")) { return new UppercaseStringProcessor(); } else if (type.equals("reverse")) { return new ReverseStringProcessor(); } throw new IllegalArgumentException("Invalid type: " + type); } } // 測試程式碼 public class Main { public static void main(String[] args) { StringProcessor sp1 = StringProcessorFactory.createStringProcessor("lowercase"); sp1.processString("Hello World"); StringProcessor sp2 = StringProcessorFactory.createStringProcessor("uppercase"); sp2.processString("Hello World"); StringProcessor sp3 = StringProcessorFactory.createStringProcessor("reverse"); sp3.processString("Hello World"); } }
看起來還是有if...else,但這樣的程式碼更加簡潔易懂,後期也便於維護....
使用一個對映表來將條件分支的實現對映到對應的函數或方法上。這種方法可以減少程式碼中的if else語句,並且可以動態地更新對映表,從而提高程式碼的靈活性和可維護性。
範例:
import java.util.HashMap; import java.util.Map; import java.util.function.Function; public class MappingTableExample { private Map<String, Function<Integer, Integer>> functionMap; public MappingTableExample() { functionMap = new HashMap<>(); functionMap.put("add", x -> x + 1); functionMap.put("sub", x -> x - 1); functionMap.put("mul", x -> x * 2); functionMap.put("div", x -> x / 2); } public int calculate(String operation, int input) { if (functionMap.containsKey(operation)) { return functionMap.get(operation).apply(input); } else { throw new IllegalArgumentException("Invalid operation: " + operation); } } public static void main(String[] args) { MappingTableExample example = new MappingTableExample(); System.out.println(example.calculate("add", 10)); System.out.println(example.calculate("sub", 10)); System.out.println(example.calculate("mul", 10)); System.out.println(example.calculate("div", 10)); System.out.println(example.calculate("mod", 10)); // 丟擲異常 } }
將條件分支的實現和輸入資料一起儲存在一個資料結構中,然後使用一個通用的函數或方法來處理這個資料結構。這種方法可以將大量的if else語句轉換為資料結構的處理過程,從而提高程式碼的可延伸性和可維護性。
範例:
import java.util.ArrayList; import java.util.List; import java.util.function.Function; public class DataDrivenDesignExample { private List<Function<Integer, Integer>> functionList; public DataDrivenDesignExample() { functionList = new ArrayList<>(); functionList.add(x -> x + 1); functionList.add(x -> x - 1); functionList.add(x -> x * 2); functionList.add(x -> x / 2); } public int calculate(int operationIndex, int input) { if (operationIndex < 0 || operationIndex >= functionList.size()) { throw new IllegalArgumentException("Invalid operation index: " + operationIndex); } return functionList.get(operationIndex).apply(input); } public static void main(String[] args) { DataDrivenDesignExample example = new DataDrivenDesignExample(); System.out.println(example.calculate(0, 10)); System.out.println(example.calculate(1, 10)); System.out.println(example.calculate(2, 10)); System.out.println(example.calculate(3, 10)); System.out.println(example.calculate(4, 10)); // 丟擲異常 } }
到此這篇關於java中優化大量if...else...的文章就介紹到這了,更多相關java優化大量if...else...內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45