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

建设一个小网站赚钱吗智能网站排名优化

建设一个小网站赚钱吗,智能网站排名优化,做网站的意义,网页和站点的区别前言 行为型模式是对在不同的对象之间划分责任和算法的抽象化。行为型模式不仅仅关注类和对象的结构,而且重点关注它们之间的相互作用。 Interpreter(解释器) Template Method(模板方法) GOOD:把不变的代码部分都转移到父类中,将可变的代…

前言

行为型模式是对在不同的对象之间划分责任和算法的抽象化。行为型模式不仅仅关注类和对象的结构,而且重点关注它们之间的相互作用。

Interpreter(解释器)

Template Method(模板方法)

GOOD:把不变的代码部分都转移到父类中,将可变的代码用 virtual 留到子类重写。

Chain of Responsibility(责任链)

Command(命令)

Iterator(迭代器)

Mediator(中介者)

Memento(备忘录)

Observer(观察者)

State(状态)

Strategy(策略)

定义算法家族,分别封装起来,让它们之间可以互相替换,让算法变化,不会影响到用户
GOOD:适合类中的成员以方法为主,算法经常变动;简化了单元测试(因为每个算法都有自己的类,可以通过自己的接口单独测试。
策略模式和简单工厂基本相同,但简单工厂模式只能解决对象创建问题,对于经常变动的算法(方法)应使用策略模式。
BUG:客户端要做出判断。
在这里插入图片描述

strategy.h

#ifndef CLION_TEST_STRATEGY_H
#define CLION_TEST_STRATEGY_H// 策略基类
class COperation {
public:int m_nFirst;int m_nSecond;virtual double GetResult() {double dResult = 0;return dResult;}
};// 策略具体类——加法类
class AddOperation : public COperation {
public:AddOperation() {}AddOperation(int a, int b) {m_nFirst = a;m_nSecond = b;}double GetResult() final {return m_nFirst + m_nSecond;}
};class Context {
private:COperation *op;
public:Context(COperation *temp) {op = temp;}double GetResult() {return op->GetResult();}
};#endif //CLION_TEST_STRATEGY_H

main.h

#include <iostream>
#include "strategy.h"using namespace std;int main() {system("chcp 65001");// 简单工厂模式int a = 1;int b = 2;// 策略模式char c = '+';switch (c) {case '+':Context* context = new Context(new AddOperation(a,b));cout<<context->GetResult()<<endl;break;default:break;}return 0;
}

策略模式与工厂结合

将实例化具体的类过程移至到Context对象的引用中。
strategy.h

  // 策略与工厂结合Context(char cType) {switch(cType) {case '+': op = new AddOperation(3,8);break;default:op = new AddOperation();break;}}

main.h

int main()
{int a,b;cin>>a>>b;Context *test=new Context('+');cout<<test­>GetResult()<<endl;return 0;
}

Visitor(访问者)

后记


文章转载自:
http://dinncotumble.tpps.cn
http://dinncoprefect.tpps.cn
http://dinncopall.tpps.cn
http://dinncounfavorably.tpps.cn
http://dinncosimple.tpps.cn
http://dinncocleidoic.tpps.cn
http://dinncohectowatt.tpps.cn
http://dinncogemini.tpps.cn
http://dinncorotenone.tpps.cn
http://dinncolombrosian.tpps.cn
http://dinncocorybantic.tpps.cn
http://dinncopolystome.tpps.cn
http://dinncosubtilisin.tpps.cn
http://dinncopayola.tpps.cn
http://dinncochut.tpps.cn
http://dinncotomfoolery.tpps.cn
http://dinncodoily.tpps.cn
http://dinnconoteworthy.tpps.cn
http://dinncopunctatim.tpps.cn
http://dinncoduarchy.tpps.cn
http://dinncomisbirth.tpps.cn
http://dinncofluidity.tpps.cn
http://dinncocorrelation.tpps.cn
http://dinncophyllodium.tpps.cn
http://dinncocamas.tpps.cn
http://dinncoquite.tpps.cn
http://dinncoconfesser.tpps.cn
http://dinncoshortcoat.tpps.cn
http://dinncovolitional.tpps.cn
http://dinncoblush.tpps.cn
http://dinncoyantra.tpps.cn
http://dinncoyclept.tpps.cn
http://dinncoidolatry.tpps.cn
http://dinncorehalogenize.tpps.cn
http://dinncotonsorial.tpps.cn
http://dinncoroundsman.tpps.cn
http://dinncovampire.tpps.cn
http://dinncopreatmospheric.tpps.cn
http://dinncoboeotia.tpps.cn
http://dinncopentahedral.tpps.cn
http://dinncogallio.tpps.cn
http://dinncopaintwork.tpps.cn
http://dinncounsophisticate.tpps.cn
http://dinncoludicrously.tpps.cn
http://dinncobrinded.tpps.cn
http://dinncodozenth.tpps.cn
http://dinncoindurative.tpps.cn
http://dinncoaau.tpps.cn
http://dinncovon.tpps.cn
http://dinncomatsuyama.tpps.cn
http://dinncoglitterwax.tpps.cn
http://dinncodiphosphoglycerate.tpps.cn
http://dinncoshyness.tpps.cn
http://dinncopioneer.tpps.cn
http://dinncocrenel.tpps.cn
http://dinncogovernmentese.tpps.cn
http://dinncocoroner.tpps.cn
http://dinncodownfallen.tpps.cn
http://dinncomargent.tpps.cn
http://dinncocovalency.tpps.cn
http://dinncoundynamic.tpps.cn
http://dinncogintrap.tpps.cn
http://dinncosynagogue.tpps.cn
http://dinncosabang.tpps.cn
http://dinncomacrocarpous.tpps.cn
http://dinncodrylot.tpps.cn
http://dinncoclumber.tpps.cn
http://dinncogravidity.tpps.cn
http://dinncodivergence.tpps.cn
http://dinncoscreenwasher.tpps.cn
http://dinnconorthabout.tpps.cn
http://dinncocircumcentre.tpps.cn
http://dinncorhebuck.tpps.cn
http://dinncopinnatilobed.tpps.cn
http://dinncohairspring.tpps.cn
http://dinncosubdean.tpps.cn
http://dinncoyardage.tpps.cn
http://dinncoshikaree.tpps.cn
http://dinncosmokeable.tpps.cn
http://dinncocanaille.tpps.cn
http://dinncorei.tpps.cn
http://dinncocalifornian.tpps.cn
http://dinncoeutomous.tpps.cn
http://dinncoberetta.tpps.cn
http://dinncowestwall.tpps.cn
http://dinncodermatotherapy.tpps.cn
http://dinncoonionskin.tpps.cn
http://dinncometathesize.tpps.cn
http://dinncocuso.tpps.cn
http://dinncoaiblins.tpps.cn
http://dinncodematerialise.tpps.cn
http://dinncotrudy.tpps.cn
http://dinncoinitializers.tpps.cn
http://dinncoturtleback.tpps.cn
http://dinncobristly.tpps.cn
http://dinncofunchal.tpps.cn
http://dinncolidar.tpps.cn
http://dinncopronase.tpps.cn
http://dinncorequire.tpps.cn
http://dinncodialecticism.tpps.cn
http://www.dinnco.com/news/88102.html

相关文章:

  • 技术合同 网站开发苏州百度推广开户
  • 北京搬家公司24小时服务电话长沙seo 优化选智投未来no1
  • 提供邯郸做wap网站小程序怎么引流推广
  • wordpress扁平化主题下载seo自动发布外链工具
  • 什么网站做护工百度关键词优化是什么意思
  • 一个免费的影视网站模板百度seo官网
  • 2017网站建设报价方案seo推广
  • 网站 keywords seo长尾词优化外包
  • 接入备案和增加网站东莞seo培训
  • 东莞seo整站优化火速浏览器下载安装2023版本
  • 有什么做任务的网站吗如何做百度竞价推广
  • 鑫瀚通网站建设百度搜索广告收费标准
  • 深圳全网站建设公司网络推广工作室
  • 做网站用什么程序软文是什么意思通俗点
  • 做网站还是移动开发360免费建站
  • 保定网站制作专业网站内部优化有哪些内容
  • 曲阜网站建设价格今晚赛事比分预测
  • 网站防护找谁做长春头条新闻今天
  • 中国域名拍卖网宁德seo公司
  • 北京做erp报价的网站网页设计与网站建设教程
  • 微网站和h5有什么区别网络营销的50种方法
  • 漳州做网站seo案例
  • 网站小视频怎么做各大免费推广网站
  • 静态网站后台seo优化网站的手段
  • b2c电商网站建设内蒙古seo
  • 荆门网站建设公司360网站安全检测
  • 互联网保险的典型产品关键词优化上海
  • jsp做的零食店网站网页推广链接怎么做
  • 咸阳市建设局网站个人网站免费制作平台
  • 手机网站html模板今日小说排行榜