** ❃博主首页 :**
「码到三十五」
,同名公众号 :「码到三十五」,wx号 : 「liwu0213」
☠博主专栏 :
<源码解读>
<面试攻关>
♝博主的话 :搬的每块砖,皆为峰峦之基;公众号搜索「码到三十五」关注这个爱发技术干货的coder,一起筑基
if-else
语句是控制流程的基本工具,但过度使用会使代码变得复杂且难以维护。在SpringBoot , SpringCloud项目中,优化
if-else
结构变得尤为重要。本文将深入探讨七种策略,旨在减少SpringBoot , SpringCloud项目中
if-else
的使用,提升代码的模块化、可读性和可维护性。
文章目录
一. 策略模式
策略模式允许在运行时选择算法的行为。它通过将算法定义成独立的类,并在运行时动态选择使用哪个算法,来避免使用多个
if-else
或
switch
语句。
实战案例:支付功能
假设我们有一个支付系统,支持微信、支付宝和银联等多种支付方式。我们可以定义一个支付策略接口,并为每种支付方式实现具体的策略类。
publicinterfacePaymentStrategy{voidpay(double amount);}// 微信支付@ComponentpublicclassWeiXinPaymentimplementsPaymentStrategy{publicvoidpay(double amount){// 实现微信支付逻辑}}// 其他支付方式的实现...@ServicepublicclassPaymentService{privatefinalMap<String,PaymentStrategy> strategies;@AutowiredpublicPaymentService(List<PaymentStrategy> paymentStrategies){this.strategies = paymentStrategies.stream().collect(Collectors.toMap(s -> s.getClass().getSimpleName().toLowerCase(),Function.identity()));}publicvoidprocessPayment(String strategyName,double amount){PaymentStrategy strategy = strategies.getOrDefault(strategyName,null);if(strategy !=null){
strategy.pay(amount);}else{thrownewIllegalArgumentException("Unsupported payment strategy: "+ strategyName);}}}
二. 枚举与策略模式结合
枚举类型不仅可以用来表示一组常量,还可以定义与这些常量相关联的行为。结合策略模式,可以进一步简化代码。
实战案例:订单状态管理
publicenumOrderStatus{NEW{@Overridepublicvoidprocess(){// 处理新建订单}},// 已支付PAID{@Overridepublicvoidprocess(){// TODO}};// 其他状态...;publicabstractvoidprocess();}@ServicepublicclassOrderService{publicvoidhandleOrder(OrderStatus status){
status.process();}}
三. 多态性
利用多态性,可以基于接口或抽象类定义一系列行为,并在运行时根据具体对象调用相应的方法。
实战案例:消息通知
publicinterfaceNotification{voidsend(String message);}@ComponentpublicclassEmailNotificationimplementsNotification{// 实现发送邮件的逻辑}@ComponentpublicclassSmsNotificationimplementsNotification{// 实现发送邮件的逻辑}// 其他通知方式的实现...@ServicepublicclassNotificationService{@AutowiredprivateList<Notification> notifications;publicvoidnotifyAll(String message){
notifications.forEach(notification -> notification.send(message));}}
通过Spring依赖注入,自动完成当前所有实现了Notification接口的bean
四. Lambda表达式与函数接口
Java 8引入的Lambda表达式和函数接口(如
Function
、
Consumer
等)为简化代码提供了强大工具。
实战案例:折扣计算
@ServicepublicclassDiscountService{privatefinalMap<String,Function<Double,Double>> discountFunctions =newHashMap<>();publicDiscountService(){
discountFunctions.put("VIP1", price -> price *0.95);
discountFunctions.put("VIP2", price -> price *0.95-20);// 其他VIP等级的折扣设置...}publicdoubleapplyDiscount(String discountCode,double price){return discountFunctions.getOrDefault(discountCode,Function.identity()).apply(price);}}
五. 状态模式
状态模式主要用来解决当一个对象的行为取决于它的状态时,并且需要在运行时根据状态改变它的行为的问题。
状态模式的结构
- Context(环境类):维护一个具体状态类的实例,这个实例的当前状态决定了环境类的行为。
- State(抽象状态类):用以封装与Context的一个特定状态相关的行为。
- ConcreteState(具体状态类):实现State接口,每一个具体状态类封装了与Context的一个状态相关的行为。
有一个订单系统,订单的状态包括未支付、已支付、已发货和已完成。我们可以使用状态模式来管理订单的状态和行为。
5.1. 定义抽象状态类(State)
publicinterfaceOrderState{voidpay(OrderContext orderContext);voidship(OrderContext orderContext);voidcomplete(OrderContext orderContext);}
接收
OrderContext
类型的参数,以便在需要时可以访问订单的其他属性或修改订单的状态。
5.2. 定义具体状态类(ConcreteState)
publicclassUnpaidStateimplementsOrderState{privateOrderContext context;publicUnpaidState(OrderContext context){this.context = context;}@Overridepublicvoidpay(OrderContext orderContext){// 更新订单状态为已支付
orderContext.setState(newPaidState(orderContext));// 执行支付逻辑 System.out.println("Order paid successfully");}@Overridepublicvoidship(OrderContext orderContext){thrownewIllegalStateException("Cannot ship an unpaid order");}@Overridepublicvoidcomplete(OrderContext orderContext){thrownewIllegalStateException("Cannot complete an unpaid order");}}// 你可以定义 PaidState, ShippedState, CompletedState 等类
5.3. 定义环境类(Context)
环境类维护了当前状态对象的引用,并定义了委托给当前状态对象的请求方法。
publicclassOrderContext{privateOrderState state;publicOrderContext(OrderState state){this.state = state;}publicvoidsetState(OrderState state){this.state = state;}publicvoidpay(){
state.pay(this);}publicvoidship(){
state.ship(this);}publicvoidcomplete(){
state.complete(this);}// 其他订单属性和方法... }
5.4. 客户端代码
最后,客户端代码通过环境类与订单交互,环境类根据当前状态决定执行什么行为。订单交互,环境类根据当前状态决定执行什么行为。
publicclassClient{publicstaticvoidmain(String[] args){OrderContext order =newOrderContext(newUnpaidState(order));// 尝试支付订单
order.pay();// 尝试发货(根据订单状态,这可能会抛出异常) // order.ship(); // 假设订单支付后,订单状态已更新为 PaidState // order.setState(new PaidState(order)); // order.ship(); }}
5.5 状态模式的优点
- 封装了转换逻辑:状态模式将状态的转换逻辑封装在状态类中,减少了
if-else
或switch-case
语句,使得代码更加清晰和易于维护。或switch-case
语句,使得代码更加清晰和易于维护。 - 易于扩展:如果需要添加新的状态或行为,只需添加新的状态类即可,无需修改其他类。
- 状态转换与行为委托:通过将行为委托给当前状态对象,环境类(如订单)可以在不修改自身代码的情况下
六. 命令模式
命令模式将请求封装为对象,从而允许使用不同的请求、队列、日志来参数化其他对象。它特别适用于需要撤销或重做操作的场景。
实战案例:文件操作
…省略很多代码…
七. 保护子句
保护子句(也称为卫语句)通过提前检查条件并抛出异常或返回错误,来避免深层嵌套的
if-else
结构。
实战案例:用户注册
…完整代码请关注博主公众号 [ 码到三十五 ] 回复 [ springboot ] 自动获取…
总结
通过策略模式、枚举与策略模式结合、状态模式, 多态性、Lambda表达式与函数接口、命令模式以及保护子句等策略,我们可以有效地减少SpringBoot,SpringCloud 项目中
if-else
语句的使用,提升代码的可读性、可维护性和模块化水平。每种策略都有其适用的场景,合理选择和组合这些策略,可以帮助我们编写出更简洁、更高效的代码。
关注公众号[码到三十五]获取更多技术干货 !
版权归原作者 码到三十五 所有, 如有侵权,请联系我们删除。