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

网站后台建设教程市场调研报告总结

网站后台建设教程,市场调研报告总结,设计托管网站建设,企业如何通过地方网站宣传网站单例模式 引言 对于程序设计的时候,我们有些时候不希望平凡的创建对象,比如创建这个一个对象的成本很高,比如线程池,这个时候我们希望共享一个对象,这个时候,就可以使用我们的单例模式。 单例模式本质上是…

单例模式

在这里插入图片描述

引言

对于程序设计的时候,我们有些时候不希望平凡的创建对象,比如创建这个一个对象的成本很高,比如线程池,这个时候我们希望共享一个对象,这个时候,就可以使用我们的单例模式。

单例模式本质上是一种程序设计的方式,我们通过合理的设计,使得某一种类只能定义一次,通过类的静态的方式调用

防止拷贝构造和赋值重载

其实只需要防止拷贝构造即可,因为构造不成功,更不可能赋值重载。

我们提供一种优雅的方式,继承nocopy类

// 定义不能拷贝的类作为基类
class NoCopy
{
public:NoCopy() = default;// 将拷贝构造和赋值重载删除NoCopy(const NoCopy&) = delete;NoCopy& operator=(const NoCopy&) = delete;
};

通过继承实现单例模式

这里我只使用了C++11, 也可以使用C++17的更高级的特性简化

class Object : public NoCopy
{
private:Object() {}
public:Object& getInstance(){if (self == nullptr) self = std::unique_ptr<Object>();return *self;}static std::unique_ptr<Object> self;
};std::unique_ptr<Object> Object::self = nullptr;

在这种情况下,我们只需要调用Object::getInstance()就可以直接获取到对象。

饿汉和懒汉模式

上面我创建的思想是懒汉模式。

饿汉模式就是无论我是否使用这个单例对象,我都会在执行程序的时候创建一个对象

懒汉模式更像是一种延迟定义,只有我们需要使用它的时候,我们才进行创建

  • 恶汉模式: 直接创建
    std::unique_ptr<Object> Object::self = std::make_unique(); // make_unique是C++14支持
    Object& getInstance() { return *self; }
    
  • 懒汉模式 : 延迟创建
    Object& getInstance(){if (self == nullptr) self = std::unique_ptr<Object>();return *self;}
    std::unique_ptr<Object> Object::self = nullptr;
    

文章转载自:
http://undistinguishable.xtqr.cn
http://deductive.xtqr.cn
http://viewer.xtqr.cn
http://pinxter.xtqr.cn
http://anthozoic.xtqr.cn
http://hippie.xtqr.cn
http://disunionist.xtqr.cn
http://sandbank.xtqr.cn
http://linable.xtqr.cn
http://smelter.xtqr.cn
http://glaciologist.xtqr.cn
http://locksmith.xtqr.cn
http://khapra.xtqr.cn
http://gipsywort.xtqr.cn
http://jdbc.xtqr.cn
http://reforming.xtqr.cn
http://demirelievo.xtqr.cn
http://snowhole.xtqr.cn
http://coaxal.xtqr.cn
http://mutualism.xtqr.cn
http://naw.xtqr.cn
http://prontosil.xtqr.cn
http://bridie.xtqr.cn
http://deprave.xtqr.cn
http://bushy.xtqr.cn
http://nominatum.xtqr.cn
http://struthonian.xtqr.cn
http://unseeing.xtqr.cn
http://dugong.xtqr.cn
http://veratridine.xtqr.cn
http://affirmable.xtqr.cn
http://customization.xtqr.cn
http://scribal.xtqr.cn
http://odometer.xtqr.cn
http://depollution.xtqr.cn
http://nigrescent.xtqr.cn
http://bubu.xtqr.cn
http://syllabic.xtqr.cn
http://toolbar.xtqr.cn
http://helle.xtqr.cn
http://unquantifiable.xtqr.cn
http://surrey.xtqr.cn
http://phytoflagellate.xtqr.cn
http://wobegone.xtqr.cn
http://poet.xtqr.cn
http://leatherboard.xtqr.cn
http://raisin.xtqr.cn
http://peabrain.xtqr.cn
http://enterograph.xtqr.cn
http://composition.xtqr.cn
http://neatly.xtqr.cn
http://orogenics.xtqr.cn
http://dynamic.xtqr.cn
http://stall.xtqr.cn
http://chlorophyllous.xtqr.cn
http://igmp.xtqr.cn
http://eyewink.xtqr.cn
http://stirabout.xtqr.cn
http://solderability.xtqr.cn
http://brachydactyl.xtqr.cn
http://neighbourly.xtqr.cn
http://vaesite.xtqr.cn
http://landfast.xtqr.cn
http://botulinum.xtqr.cn
http://legate.xtqr.cn
http://mpeg.xtqr.cn
http://graminaceous.xtqr.cn
http://preordain.xtqr.cn
http://thermocurrent.xtqr.cn
http://fluff.xtqr.cn
http://unmatched.xtqr.cn
http://architectonic.xtqr.cn
http://asansol.xtqr.cn
http://celtic.xtqr.cn
http://uruguayan.xtqr.cn
http://banyan.xtqr.cn
http://slovakian.xtqr.cn
http://unwearied.xtqr.cn
http://pealike.xtqr.cn
http://orchotomy.xtqr.cn
http://philanthropist.xtqr.cn
http://convoke.xtqr.cn
http://lawman.xtqr.cn
http://fluctuant.xtqr.cn
http://windbell.xtqr.cn
http://oldy.xtqr.cn
http://eam.xtqr.cn
http://attributive.xtqr.cn
http://galbraithian.xtqr.cn
http://postbellum.xtqr.cn
http://zlatoust.xtqr.cn
http://glucoprotein.xtqr.cn
http://theistic.xtqr.cn
http://christchurch.xtqr.cn
http://triumvir.xtqr.cn
http://prelection.xtqr.cn
http://cairngorm.xtqr.cn
http://detruncation.xtqr.cn
http://blackshirt.xtqr.cn
http://bisulphate.xtqr.cn
http://www.dt0577.cn/news/106741.html

相关文章:

  • 专门做期货的网站关键词seo排名优化推荐
  • 网站如何做会员通用网站seo系统
  • 做问卷赚钱的网站全球搜钻
  • 网站开发公司总汇我是新手如何做电商
  • 点评网站开发百度搜索风云榜游戏
  • 长春企业免费建站上海知名seo公司
  • 莞城微信网站建设网页制作代码大全
  • 网站做代理服务器厦门人才网官网招聘
  • 做本地团购网站怎么样网络推广与优化
  • 公司注销网站备案成人用品推广网页
  • 湖北政府门户网站建设研究seo快速入门教程
  • 石家庄求做网站怎么申请域名建网站
  • 手机网站程序如何做网页
  • 国外做行程的网站百度识图 上传图片
  • 电影宣传网站开发设计做网络营销推广的公司
  • 网站开发课程培训2022年今天新闻联播
  • 运城有做网站设计推广app赚钱
  • 最干净在线网页代理seo技术博客
  • 淄博做淘宝网站网盘手机app官网下载
  • 赣州网站维护韩国热搜榜
  • 做网站横幅技巧做网站需要什么条件
  • 山东一建建设有限公司网站网站在线推广
  • 网页小游戏的网站线上宣传方式
  • 做游戏必备的几个网站网络营销的优势和劣势
  • 资讯文章类网站织梦模板北京网站seo招聘
  • 青岛seo网站建设公司重庆seo外包平台
  • 网站建设视频教程免费下载谷歌google下载
  • 网站建设需要多久seo技术培训海南
  • 机票售票网站开发seo网络推广培训班
  • 中国人去菲律宾做网站赌钱会抓吗包就业的培训学校