状态模式重构条件语句
程序员文章站
2022-05-23 19:17:24
状态模式重构条件语句 直接上代码: 客户端调用: 状态模式:当一个对象的内部状态改变时允许改变它的行为。状态模式主要解决的是当控制一个对象状态转换的条件表达式过于复杂时的情况。把状态的判断逻辑转移到表示不同状态的一系列类当中,可以把复杂的判断逻辑简化。 客户端通过SetAddress(对应状态模式中 ......
状态模式重构条件语句
直接上代码:
/// <summary> /// 状态模式的环境类 /// </summary> public class calculatecontext { private ishippingamount _calculate; public calculatecontext() => _calculate = new getalaskashippingamount(); public void setaddress(ishippingamount calculate) => _calculate = calculate; public decimal calculateamount() => _calculate.getamount(); } // 抽象 public interface ishippingamount { addressstate state { get; } decimal getamount(); } #region 具体地址的实现 // 具体 public class getalaskashippingamount : ishippingamount { public addressstate state { get => addressstate.alaska; } public decimal getamount() => 15; } public class getnewyorkshippingamount : ishippingamount { public addressstate state { get => addressstate.newyork; } public decimal getamount() => 10; } public class getfloridashippingamount : ishippingamount { public addressstate state { get => addressstate.florida; } public decimal getamount() => 3; } #endregion
客户端调用:
#region 状态模式重构switch...case... static void switchtostatedp() { var ctx = new calculatecontext(); ctx.calculateamount(); ctx.setaddress(new getfloridashippingamount()); ctx.calculateamount(); } #endregion
状态模式:当一个对象的内部状态改变时允许改变它的行为。状态模式主要解决的是当控制一个对象状态转换的条件表达式过于复杂时的情况。把状态的判断逻辑转移到表示不同状态的一系列类当中,可以把复杂的判断逻辑简化。
客户端通过setaddress(对应状态模式中的内部状态改变)来调整客户的选择(也就是条件)。