zoukankan      html  css  js  c++  java
  • Head First Design Patterns State Pattern

    The State Pattern allows an object to alter its behavior when its internal state changes. The

    object will appear to change its class.

    State Pattern Diagram:

    State Pattern VS. Strategy Pattern

    • with the state pattern, we have a set of behavior encapsulated in state objects; at any time the 

    context is delegating to one of those states. Over time, the current state changes across the set of state 

    objects to reflect the internal state of the context, so the context's behavior changes over times as well. 

    The client usually knows very little, if anything, about the state objects.

    • with strategy, the client usually specifies the strategy object that the context is composed with. Now, 

    while the pattern providers the flexibility to change the strategy object at runtime, often there is a strategy 

    object that is most appropriate for a context object. For instance in the strategy pattern, some of our ducks 

    were configured to fly with typical flying behavior, while others were configured with a fly behavior that kept 

    them grounded.

  • 相关阅读:
    python基础-网络编程part01
    常见的加密算法
    mvn常用命令
    Stream排序Map集合
    解决浮点运算精度不准确,BigDecimal 加减乘除
    阿里fastjson解析
    java可变参数
    set集合迭代
    包装类型间的相等判断
    java集合与数组之间转换
  • 原文地址:https://www.cnblogs.com/zhuqiang/p/2482415.html
Copyright © 2011-2022 走看看