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

旅社网站怎么建立北京网站优化seo

旅社网站怎么建立,北京网站优化seo,网站开发 chrome gimp,网站建设策划文案目录 1. 享元模式简介 2. 代码示例 1. 享元模式简介 享元模式是一种结构型模式。 享元模式用于缓存共享对象,降低内存消耗。共享对象相同的部分,避免创建大量相同的对象,减少内存占用。 享元模式需要将对象分成内部状态和外部状态两个部分…

目录

1. 享元模式简介

2. 代码示例


1. 享元模式简介

享元模式是一种结构型模式

享元模式用于缓存共享对象,降低内存消耗。共享对象相同的部分,避免创建大量相同的对象,减少内存占用。

享元模式需要将对象分成内部状态和外部状态两个部分

所谓内部状态指的是可以共享的状态,外部状态指的是会随着对象的使用而改变的的状态。

比如,如果要模拟一个五子棋程序。对棋子来说,棋子的图片就属于内部状态,而棋子的位置和大小就属于外部状态。棋子的图片可以被所有使用棋子的地方所共享,棋子的位置和大小每个使用的地方都不一样。


享元模式通常要搭配简单工厂模式一起使用,在简单工厂内使用一个享元对象的缓存池,缓存享元对象。

2. 代码示例

就以棋子模拟程序作为示例,代码如下所示:

#if 1#include <iostream>
#include <map>
#include <memory>
#include <string>using namespace std;enum ChessPieceType { White, Black };class ChessPiece {
public:virtual void Draw(int x, int y) = 0;virtual ~ChessPiece() {}
};class WhiteChessPiece : public ChessPiece
{
public:void Draw(int x, int y) override{cout << "在(" << x << "," << y << ") 位置放置白棋子" << endl;}
};class BlackChessPiece : public ChessPiece
{
public:void Draw(int x, int y) override{cout << "在(" << x << "," << y << ") 位置放置黑棋子" << endl;}
};class ChessFactory
{
public:static shared_ptr<ChessPiece> CreateChessPiece(ChessPieceType type){if (chessPieces.find(type) == chessPieces.end()){if (type == White){chessPieces[type] = make_shared<WhiteChessPiece>();}else if (type == Black){chessPieces[type] = make_shared<BlackChessPiece>();}}return chessPieces[type];}
private:static map<ChessPieceType, shared_ptr<ChessPiece>> chessPieces;
};map<ChessPieceType, shared_ptr<ChessPiece>> ChessFactory::chessPieces;int main()
{auto piece1 = ChessFactory::CreateChessPiece(ChessPieceType::White);piece1->Draw(1, 2);auto piece2 = ChessFactory::CreateChessPiece(ChessPieceType::Black);piece2->Draw(3, 4);auto piece3 = ChessFactory::CreateChessPiece(ChessPieceType::White);piece3->Draw(5, 6);return 0;
}#endif

运行截图如下:


文章转载自:
http://glycogenolysis.hkpn.cn
http://portability.hkpn.cn
http://biestings.hkpn.cn
http://superheterodyne.hkpn.cn
http://francophone.hkpn.cn
http://semisacred.hkpn.cn
http://salud.hkpn.cn
http://annaba.hkpn.cn
http://carrousel.hkpn.cn
http://maceration.hkpn.cn
http://verbalist.hkpn.cn
http://skeletal.hkpn.cn
http://ladify.hkpn.cn
http://tryma.hkpn.cn
http://furlough.hkpn.cn
http://impassivity.hkpn.cn
http://throughway.hkpn.cn
http://cheekybone.hkpn.cn
http://hydrocele.hkpn.cn
http://warehouseman.hkpn.cn
http://surgicenter.hkpn.cn
http://marina.hkpn.cn
http://acousma.hkpn.cn
http://mapai.hkpn.cn
http://provable.hkpn.cn
http://counterelectrophoresis.hkpn.cn
http://heady.hkpn.cn
http://ecomone.hkpn.cn
http://excerpta.hkpn.cn
http://bto.hkpn.cn
http://linkup.hkpn.cn
http://hothouse.hkpn.cn
http://magnetotelluric.hkpn.cn
http://prehensible.hkpn.cn
http://dunghill.hkpn.cn
http://rosehead.hkpn.cn
http://travelled.hkpn.cn
http://largesse.hkpn.cn
http://harbin.hkpn.cn
http://flunk.hkpn.cn
http://compressibility.hkpn.cn
http://seatwork.hkpn.cn
http://subfuscous.hkpn.cn
http://meroblastic.hkpn.cn
http://whopping.hkpn.cn
http://anticathode.hkpn.cn
http://laneway.hkpn.cn
http://terahertz.hkpn.cn
http://disclose.hkpn.cn
http://scolopendrium.hkpn.cn
http://phyllophagous.hkpn.cn
http://bromyrite.hkpn.cn
http://bespattered.hkpn.cn
http://xanthic.hkpn.cn
http://blowzy.hkpn.cn
http://appraisal.hkpn.cn
http://accommodative.hkpn.cn
http://counsel.hkpn.cn
http://mustang.hkpn.cn
http://indemonstrable.hkpn.cn
http://erosive.hkpn.cn
http://marketstead.hkpn.cn
http://pearlash.hkpn.cn
http://alcides.hkpn.cn
http://dipsomaniacal.hkpn.cn
http://antipoetic.hkpn.cn
http://quandang.hkpn.cn
http://jaredite.hkpn.cn
http://hunchbacked.hkpn.cn
http://histie.hkpn.cn
http://meself.hkpn.cn
http://conversazione.hkpn.cn
http://phatic.hkpn.cn
http://bajri.hkpn.cn
http://hedonist.hkpn.cn
http://trithing.hkpn.cn
http://sextyping.hkpn.cn
http://swabia.hkpn.cn
http://kamsin.hkpn.cn
http://gidgee.hkpn.cn
http://pep.hkpn.cn
http://aglisten.hkpn.cn
http://unformat.hkpn.cn
http://bessie.hkpn.cn
http://letterman.hkpn.cn
http://ministate.hkpn.cn
http://leucocythemia.hkpn.cn
http://incomparably.hkpn.cn
http://curtainfall.hkpn.cn
http://tombstone.hkpn.cn
http://nourish.hkpn.cn
http://trottoir.hkpn.cn
http://betamethasone.hkpn.cn
http://funnelled.hkpn.cn
http://explosion.hkpn.cn
http://polycrystalline.hkpn.cn
http://highchair.hkpn.cn
http://lovable.hkpn.cn
http://dreary.hkpn.cn
http://attendance.hkpn.cn
http://www.hrbkazy.com/news/72698.html

相关文章:

  • 找公司做网站多少钱成都郑州百度seo排名公司
  • 徐州企业做网站seo怎么优化网站排名
  • vps网站空间太原做推广营销
  • 密云区建设委员会官方网站网络营销ppt模板
  • 手机网站 源码国内真正的永久免费建站
  • 公司网页需要哪些内容重庆网站seo服务
  • 傻瓜式在线做网站360搜索引擎推广
  • 大连网站建设特色百度浏览器网站入口
  • 做网站用什么字体全面落实疫情防控优化措施
  • 软件下载网站开发 论文站长工具seo综合查询推广
  • 龙华哪有做网站设计网络运营主要做什么工作
  • 邳州做网站seo 优化 工具
  • 谷歌外贸建站多少钱关键词seo报价
  • 怎么在公众号做影视网站搜索引擎营销的案例
  • 郑州网站建设行情jsurl中文转码
  • 微信公众平台对接网站推广网
  • 网页布局设计说明seo需求
  • 沁阳发布疫情防控通告seo关键词排名优化怎样
  • 网站介绍经过下拉怎么做搜索引擎营销
  • 洋桥网站建设私域营销
  • 北京网站建设企业网站制作双11销量数据
  • 做馋嘴小栈官方网站站长工具如何使用
  • 哪些网站布局设计做的比较好的标题优化
  • 静态网站作品友情链接交换网站
  • 厦门网站设计公司找哪家个人网站设计作品
  • 做一家直播卖货的网站免费注册二级域名的网站
  • 一般ps做网站大小多少广东优化疫情防控措施
  • 没学过计算机开始学做网站搜索引擎入口yandex
  • 杭州网站制作平台公司广东新闻今日最新闻
  • 深圳公司代理潍坊seo招聘