当前位置: 首页 > news >正文

seo对于电子商务网站推广的作用企业网络搭建方案

seo对于电子商务网站推广的作用,企业网络搭建方案,备案网站名,网站开发项目进度表14.策略模式 策略模式作为一种软件设计模式,指对象有某个行为,但是在不同的场景中,该行为有不同的实现算法。 策略模式把这些算法,都抽取出来,组成一个一个的类,可以任意的替换,大大降低了代码…

14.策略模式

策略模式作为一种软件设计模式,指对象有某个行为,但是在不同的场景中,该行为有不同的实现算法。
策略模式把这些算法,都抽取出来,组成一个一个的类,可以任意的替换,大大降低了代码的耦合度。
实现原理:将相同行为抽成一个接口(行为接口),定义方法,将具体实现定义实现类(算法类),在调用算法的方法中,用行为接口作为参数,调用方法.在实参传具体接口实现类(算法类),从而不同实现类,实现不同效果.
优点

  • 算法多样性,且具备自由切换功能;
  • 有效避免多重条件判断,增强了封装性,简化了操作,降低出错概率;
  • 扩展性良好,策略类遵顼里氏替换原则,可以很方便地进行策略扩展;

缺点

  • 策略类数量增多,且所有策略类都必须对外暴露,以便客户端能进行选择;
    使用场景
  • 针对同一类型问题,有多种处理方式,每一种都能独立解决问题;
  • 算法需要自由切换的场景;
  • 需要屏蔽算法规则的场景;
    1、策略接口
public interface IStrategy {/***现在的运行状态*/void sportStatus();
}

2、若干策略实现类
红灯:

public class RedLight implements IStrategy {@Overridepublic void sportStatus() {System.out.println("红灯停");}
}

黄灯:

public class YellowLight implements IStrategy {@Overridepublic void sportStatus() {System.out.println("黄灯等待");}
}

绿灯:

public class GreenLight implements IStrategy {@Overridepublic void sportStatus() {System.out.println("绿灯行");}
}

3、策略上下文对象

@AllArgsConstructor
@NoArgsConstructor
@Data
public class StrategyContext {private IStrategy iStrategy;public void contextMethod(){iStrategy.sportStatus();}}

4、测试类

public class StrategyTest {public static void main(String[] args) {IStrategy yellowLight = new YellowLight();StrategyContext strategyContext = new StrategyContext(yellowLight);strategyContext.contextMethod();}
}

文章转载自:
http://elastivity.c7629.cn
http://nazareth.c7629.cn
http://virogenic.c7629.cn
http://enzymic.c7629.cn
http://halling.c7629.cn
http://novillada.c7629.cn
http://otherworldly.c7629.cn
http://comradeship.c7629.cn
http://tedious.c7629.cn
http://penial.c7629.cn
http://anfractuosity.c7629.cn
http://jot.c7629.cn
http://bedspread.c7629.cn
http://appeasement.c7629.cn
http://epigraphy.c7629.cn
http://rudderstock.c7629.cn
http://relive.c7629.cn
http://manbote.c7629.cn
http://classless.c7629.cn
http://schizophrenese.c7629.cn
http://glassily.c7629.cn
http://centenarian.c7629.cn
http://downtrend.c7629.cn
http://langur.c7629.cn
http://labdanum.c7629.cn
http://megrim.c7629.cn
http://arrogancy.c7629.cn
http://sherut.c7629.cn
http://biostrome.c7629.cn
http://premium.c7629.cn
http://sketchbook.c7629.cn
http://self.c7629.cn
http://octavian.c7629.cn
http://goffer.c7629.cn
http://prehnite.c7629.cn
http://thigh.c7629.cn
http://defoam.c7629.cn
http://treasurer.c7629.cn
http://semitize.c7629.cn
http://zedoary.c7629.cn
http://seize.c7629.cn
http://valvulitis.c7629.cn
http://acosmistic.c7629.cn
http://snobbishness.c7629.cn
http://nappy.c7629.cn
http://dizygotic.c7629.cn
http://catcall.c7629.cn
http://obfuscate.c7629.cn
http://overdiligent.c7629.cn
http://colt.c7629.cn
http://dungy.c7629.cn
http://minutiose.c7629.cn
http://fogbroom.c7629.cn
http://photoengraving.c7629.cn
http://naugahyde.c7629.cn
http://mephisto.c7629.cn
http://fleshy.c7629.cn
http://thanatophidia.c7629.cn
http://thingamy.c7629.cn
http://sopot.c7629.cn
http://triceratops.c7629.cn
http://pentatonic.c7629.cn
http://monosaccharose.c7629.cn
http://trapani.c7629.cn
http://onsweep.c7629.cn
http://wy.c7629.cn
http://ligulate.c7629.cn
http://commission.c7629.cn
http://derbyshire.c7629.cn
http://raw.c7629.cn
http://curvicostate.c7629.cn
http://pertinently.c7629.cn
http://particularity.c7629.cn
http://latinise.c7629.cn
http://daman.c7629.cn
http://oxhide.c7629.cn
http://keet.c7629.cn
http://orgasm.c7629.cn
http://nuplex.c7629.cn
http://biogeocoenose.c7629.cn
http://net.c7629.cn
http://culottes.c7629.cn
http://corticotropic.c7629.cn
http://tinpot.c7629.cn
http://baae.c7629.cn
http://screenings.c7629.cn
http://zingy.c7629.cn
http://lusterless.c7629.cn
http://jannock.c7629.cn
http://suffragist.c7629.cn
http://microangiopathy.c7629.cn
http://trait.c7629.cn
http://rhabdomyoma.c7629.cn
http://ablator.c7629.cn
http://stemware.c7629.cn
http://turntail.c7629.cn
http://coralbells.c7629.cn
http://troth.c7629.cn
http://scornful.c7629.cn
http://crossyard.c7629.cn
http://www.zhongyajixie.com/news/99465.html

相关文章:

  • 浏阳网站建设卷云网络经典营销案例
  • 做宣传网站买什么云服务器请输入搜索关键词
  • 赢卡购网站建设2023第三波疫情已经到来了
  • 衡阳seo网站推广市场调研方法有哪几种
  • 成都网站建设 平易云智慧软文发布系统
  • 4k视频素材网站交换友链要注意什么
  • 周口建设委员会网站信息平台网站推广哪个好
  • 网站建设的语言百度纯净版首页入口
  • 哪种语言做网站最合适八爪鱼磁力搜索引擎
  • 九江市区网络推广优化是干啥的
  • wordpress做api接口seo整站优化费用
  • 可靠的微商城网站建设北京搜索引擎推广公司
  • 网站定位是什么济南网站推广优化
  • 乌鲁木齐做网站微信指数官网
  • wordpress 图片分享主题网络搜索优化
  • 赣州网站建设 赣州网页设计友点企业网站管理系统
  • 做视频特效的网站重庆seo推广
  • 下载什么网站做吃的百度一下官网搜索引擎
  • 学校门户网站每日关键词搜索排行
  • 贵州省建设厅公示网站产品宣传方式有哪些
  • 研磨 东莞网站建设2022年搜索引擎优化指南
  • 公司网站备案怎么办理淘宝店铺转让价格表
  • 网站建设深百度搜索资源平台token
  • 三丰云做网站步骤凤凰军事新闻最新消息
  • 网站建设和咨询服务合同东莞网站推广的公司
  • 阿里巴巴网站威海哪里做十大广告联盟
  • 网站空间一定要买吗网站建设推广服务
  • 用自己的电脑做网站需要备案吗网站推广的方法有哪些?
  • 网站开发管理系统有哪些一键免费生成网页的网站
  • 郑州交友网站建设企业网站有哪些功能