设计模式——策略模式

策略模式基础讲解已经很详尽:

  https://www.cnblogs.com/lewis0077/p/5133812.html

补充使用实例:网络请求重试策略

策略接口:

public interface RetryPolicy { int getMaxNumRetries(); void setmMaxNumRetries(int mMaxNumRetries); /** * 重试策略的具体执行:可以根据不同的RequestException作不同的重试 */ boolean retry(RequestException e) ; }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zypxgx.html