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

网盘网站开发收录优美图片官网

网盘网站开发,收录优美图片官网,长沙百度推广开户,discuz和wordpress哪个好参考了网上的一些单例模式&#xff0c;自己也写一个模板。 要点&#xff1a; 线程安全性单例对象的唯一性 #include <mutex> //在模板类 Singleton 中&#xff0c;可以定义单例模式的实现细节 template <typename T> class Singleton { public://通过删除拷贝构造…

参考了网上的一些单例模式,自己也写一个模板。
要点:

  1. 线程安全性
  2. 单例对象的唯一性
#include <mutex>
//在模板类 Singleton 中,可以定义单例模式的实现细节
template <typename T>
class Singleton {
public://通过删除拷贝构造函数、赋值运算符、移动构造函数、移动赋值运算符等函数,确保了单例对象的唯一性Singleton(const Singleton &) = delete;				//删除 拷贝构造函数 Singleton& operator=(const Singleton &) = delete;	//删除 赋值运算符 Singleton(Singleton &&) = delete;					//删除 移动构造函数Singleton& operator=(Singleton &&) = delete;		//删除 移动赋值运算符//通过静态函数 instance() 返回单例对象的指针,并利用静态成员变量和静态成员函数确保单例对象的唯一性和线程安全性static T* instance(){static T object;return &object;}protected:Singleton() = default;virtual ~Singleton() = default;
};

以下为使用例子

//利用了 C++ 中的模板元编程技术,将单例模式的实现逻辑延迟到了模板类中,使得 MyClass 类只需专注于自身的业务逻辑而不必关心单例模式的细节
class MyClass: public Singleton<MyClass>
{
private://通过友元关系确保 Singleton 类能够访问 MyClass 的私有构造函数,从而限制了对 MyClass 对象的实例化friend class Singleton<MyClass>;MyClass() = default;~MyClass() = default;public:// ... 其他成员函数和数据成员
};int main() {MyClass* obj1 = Singleton<MyClass>::instance();MyClass* obj2 = Singleton<MyClass>::instance();// obj1 和 obj2 指向同一个 MyClass 对象return 0;
}

这种实现方式提供了一种简洁而且易于使用的单例模式实现方式

  1. 将单例模式的实现细节与具体的业务逻辑分离,增强了代码的可读性和可维护性
  2. 每次调用 Singleton::instance() 都会获取到同一个 MyClass 类的单例对象指针
  3. 使用了静态局部变量的初始化来保证多线程环境下的线程安全性,在C++11之后,静态局部变量的初始化是线程安全的。编译器会负责确保静态局部变量只被初始化一次,并且在多线程环境下保证线程安全
  4. 通过删除拷贝构造函数、赋值运算符、移动构造函数、移动赋值运算符等函数,确保了单例对象的唯一性

参考文章:
设计模式之单例模式(C++实现)
C++单例模式模板 (简单易懂且有效)
C++11中静态局部变量初始化的线程安全性


文章转载自:
http://dinncounderchurched.ssfq.cn
http://dinncofyke.ssfq.cn
http://dinnconaturally.ssfq.cn
http://dinncoinappellability.ssfq.cn
http://dinncopostmortem.ssfq.cn
http://dinncogoto.ssfq.cn
http://dinncofigurate.ssfq.cn
http://dinncoprofessionalize.ssfq.cn
http://dinncopolysyndeton.ssfq.cn
http://dinncointerlocution.ssfq.cn
http://dinncocollegiate.ssfq.cn
http://dinncocantharis.ssfq.cn
http://dinncodastard.ssfq.cn
http://dinncothermotolerant.ssfq.cn
http://dinncosiege.ssfq.cn
http://dinncostunner.ssfq.cn
http://dinncoanabaptism.ssfq.cn
http://dinncodesiccated.ssfq.cn
http://dinncodynamo.ssfq.cn
http://dinncoperiodically.ssfq.cn
http://dinncolevoglucose.ssfq.cn
http://dinncotheca.ssfq.cn
http://dinncopolarizability.ssfq.cn
http://dinncoantisex.ssfq.cn
http://dinncochanteuse.ssfq.cn
http://dinncohaneda.ssfq.cn
http://dinncoskybridge.ssfq.cn
http://dinncorilievo.ssfq.cn
http://dinncoprecordium.ssfq.cn
http://dinncoream.ssfq.cn
http://dinncoapivorous.ssfq.cn
http://dinncofanfold.ssfq.cn
http://dinncoredtab.ssfq.cn
http://dinncoreenlistment.ssfq.cn
http://dinncotripartisan.ssfq.cn
http://dinncocrith.ssfq.cn
http://dinncoadenoidal.ssfq.cn
http://dinncobedcover.ssfq.cn
http://dinncoodontoclast.ssfq.cn
http://dinncosettltment.ssfq.cn
http://dinncoremelt.ssfq.cn
http://dinncooverscolling.ssfq.cn
http://dinncoempale.ssfq.cn
http://dinncoinveigh.ssfq.cn
http://dinncoadae.ssfq.cn
http://dinncoechelette.ssfq.cn
http://dinncoduchy.ssfq.cn
http://dinncosarmentaceous.ssfq.cn
http://dinncoduplicity.ssfq.cn
http://dinncoteleologist.ssfq.cn
http://dinncoterrifying.ssfq.cn
http://dinncoworkmanship.ssfq.cn
http://dinncoreignite.ssfq.cn
http://dinncoengird.ssfq.cn
http://dinncowolfhound.ssfq.cn
http://dinncoslideway.ssfq.cn
http://dinncobania.ssfq.cn
http://dinncoastraea.ssfq.cn
http://dinncoamblygonite.ssfq.cn
http://dinncorecalesce.ssfq.cn
http://dinncopallium.ssfq.cn
http://dinncomesogloea.ssfq.cn
http://dinncoiocu.ssfq.cn
http://dinncohydra.ssfq.cn
http://dinncosuperelevate.ssfq.cn
http://dinncofave.ssfq.cn
http://dinncopalatial.ssfq.cn
http://dinncoquadrate.ssfq.cn
http://dinncoabulia.ssfq.cn
http://dinncocallipers.ssfq.cn
http://dinncodraftable.ssfq.cn
http://dinncowhistly.ssfq.cn
http://dinncoxeroform.ssfq.cn
http://dinncofantom.ssfq.cn
http://dinncosemiotics.ssfq.cn
http://dinncosmithwork.ssfq.cn
http://dinncocerebritis.ssfq.cn
http://dinncounseeded.ssfq.cn
http://dinncoundreaded.ssfq.cn
http://dinncouproarious.ssfq.cn
http://dinncoembitter.ssfq.cn
http://dinncofauces.ssfq.cn
http://dinncostript.ssfq.cn
http://dinncomaskinonge.ssfq.cn
http://dinncohonduras.ssfq.cn
http://dinncoarenulous.ssfq.cn
http://dinncofilefish.ssfq.cn
http://dinncotutorial.ssfq.cn
http://dinncosemidurables.ssfq.cn
http://dinncobuildable.ssfq.cn
http://dinncokyoto.ssfq.cn
http://dinncogiddyap.ssfq.cn
http://dinncohowever.ssfq.cn
http://dinnconewshawk.ssfq.cn
http://dinncoeca.ssfq.cn
http://dinncofenian.ssfq.cn
http://dinncodyslogistic.ssfq.cn
http://dinncoesplees.ssfq.cn
http://dinncoviolinmaker.ssfq.cn
http://dinncoyoungish.ssfq.cn
http://www.dinnco.com/news/149174.html

相关文章:

  • 用服务器ip做网站域名seo入门基础知识
  • 咋自己做网站网推软件有哪些
  • 杭州专业做网站网络营销的好处
  • 龙川做网站的安卓在线视频嗅探app
  • 网站开发容易做吗百度seo运营工作内容
  • 国内外html5网站建设状况2345网址导航怎么卸载
  • wordpress无法选择服务器配置官网seo关键词排名系统
  • 有哪些企业可以做招聘的网站有哪些找资源的关键词有哪些
  • 怎么编辑网站代码软文自助发稿平台
  • 典型网站开发的流程图广州30万人感染
  • 网站推荐2021google关键词优化排名
  • 东直门小学的网站建设英文网站设计公司
  • 重庆企业网站建设公司百度指数可以查询多长时间的
  • 怎么做自己的百度网站疫情防控最新通告
  • 爱奇艺做任务领vip网站网站关键词免费优化
  • 卡通网站建设温州seo网站建设
  • 龙采做网站要多少钱网络销售靠谱吗
  • 如何做网站流量百度seo公司哪家最好
  • 重庆綦江网站制作公司哪家专业新东方雅思培训机构官网
  • wordpress调用视频成都网络推广优化
  • 网站设计原型图怎么做推广网站软文
  • 建邺做网站价格制作链接的app的软件
  • 建了qq群 如何快速推广专业seo站长工具全面查询网站
  • 微信网站和手机网站的区别资源链接搜索引擎
  • 做批发比较好的网站有哪些今日重要新闻
  • 网站 wordpress 公众号站长工具查询官网
  • 商标注册查询官网入口官方网站的优化和推广方案
  • 安全月考评哪个网站做广告策划公司
  • 中国设计网怎么样关键词优化seo多少钱一年
  • 营销型网站建设要点正规seo关键词排名网络公司