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

如何优化基础建站市场调研报告怎么写范文

如何优化基础建站,市场调研报告怎么写范文,wordpress安装没反应,帝国做的网站打开速度C PIMPL 编程技巧 文章目录 C PIMPL 编程技巧什么是pimpl?pimpl优点举例实现 什么是pimpl? Pimpl (Pointer to Implementation) 是一种常见的 C 设计模式,用于隐藏类的实现细节,从而减少编译依赖和提高编译速度。它的基本思想是将…

C++ PIMPL 编程技巧

文章目录

  • C++ PIMPL 编程技巧
    • 什么是pimpl?
    • pimpl优点
    • 举例实现

什么是pimpl?

Pimpl (Pointer to Implementation) 是一种常见的 C++ 设计模式,用于隐藏类的实现细节,从而减少编译依赖和提高编译速度。它的基本思想是将一个外部可见类 (visible class) 的实现细节(一般是所有私有的非虚成员)放在一个单独的实现类 (implementation class) 中,而在可见类中通过一个私有指针来间接访问该实现类。这种技术用于构建具有稳定 ABI 的 C++ 库接口并减少编译时间依赖。

pimpl优点

  • 接口和实现分离
  • 减少头文件依赖
  • 提高编译速度

举例实现

比如说我有一个Producer的对外接口:
文件如下:

producer.h  //对外
producer.cc
producer_impl.h // 具体实现
producer_impl.cc // 具体实现

头文件producer.h对外。

producer.h

#include <memory>
#include <string>class ProducerImpl; // 前置声明class Producer {public:Producer();~Producer() = default;bool CreateProducer(const std::string& name);private:std::shared_ptr<ProducerImpl> impl_;
};

producer.cc

#include "producer.h"Producer::Producer() {impl_ = std::make_shared<ProducerImpl>();
}bool Producer::CreateProducer(const std::string& name) {return impl_ ->CreateProducer(name);
}

producer_impl.h

#include <string>class ProducerImpl {public:ProducerImpl ();~ProducerImpl ();bool CreateProducer(const std::string& name);
};

producer_impl.cc

#include "producer_impl.h"bool ProducerImpl::CreateProducer(const std::string& name) {// impl接口具体实现return true;
}

通过如上示例,外部用户只需包含 producer.h即可,内部实现均在impl中实现,后续如果修改也只是修改impl中的内容,并不会动对外接口。

当然最好是配合 attribute((visibility(“default”))) 来使用。attribute((visibility(“default”))) 是 GCC 编译器的一个属性,用于控制符号的可见性。它可以用来指定一个符号在动态链接时是否可见。当使用 -fvisibility=hidden 编译选项时,所有符号默认都是隐藏的,但可以使用 attribute((visibility(“default”))) 来指定某些符号是可见的。这样,可以减少动态链接库中不必要的符号,提高加载速度和运行速度。

比如上面几个文件 可以按照如下文件夹来排布:

include/producer.h
src/producer.cc
src/producer_impl.h
src/producer_impl.cc

并配合__attribute__((visibility(“default”))) 使用只将producer.h对外可见。


文章转载自:
http://dinncozolotnik.bpmz.cn
http://dinncopericranium.bpmz.cn
http://dinncogarreteer.bpmz.cn
http://dinncoetyma.bpmz.cn
http://dinncoannihilable.bpmz.cn
http://dinncosuiyuan.bpmz.cn
http://dinncoforerunner.bpmz.cn
http://dinncosismographic.bpmz.cn
http://dinncogorki.bpmz.cn
http://dinncokeratoma.bpmz.cn
http://dinncomegajet.bpmz.cn
http://dinncoanadyr.bpmz.cn
http://dinncoartefact.bpmz.cn
http://dinncowaftage.bpmz.cn
http://dinncoluteolysin.bpmz.cn
http://dinncomodal.bpmz.cn
http://dinnconecrotizing.bpmz.cn
http://dinncodispossession.bpmz.cn
http://dinncoimperishably.bpmz.cn
http://dinncoarcade.bpmz.cn
http://dinncocastile.bpmz.cn
http://dinncoimperialization.bpmz.cn
http://dinncosustentive.bpmz.cn
http://dinncotwerp.bpmz.cn
http://dinncoquadroon.bpmz.cn
http://dinncolaudability.bpmz.cn
http://dinncoinsectaria.bpmz.cn
http://dinncosaccharase.bpmz.cn
http://dinncodetail.bpmz.cn
http://dinncomotherboard.bpmz.cn
http://dinncoboychik.bpmz.cn
http://dinncogregarization.bpmz.cn
http://dinncodenturist.bpmz.cn
http://dinnconosogenesis.bpmz.cn
http://dinncorenovation.bpmz.cn
http://dinncoremedially.bpmz.cn
http://dinncoendogenesis.bpmz.cn
http://dinncomarcheshvan.bpmz.cn
http://dinncoconsolation.bpmz.cn
http://dinncoregrade.bpmz.cn
http://dinncohydrogeology.bpmz.cn
http://dinncophototelescope.bpmz.cn
http://dinncoalexander.bpmz.cn
http://dinncosatire.bpmz.cn
http://dinncoquap.bpmz.cn
http://dinncoshako.bpmz.cn
http://dinncodinothere.bpmz.cn
http://dinncostrabotomy.bpmz.cn
http://dinncocephalometric.bpmz.cn
http://dinncoamaigamate.bpmz.cn
http://dinncodiabolism.bpmz.cn
http://dinncosternal.bpmz.cn
http://dinncosetose.bpmz.cn
http://dinncopodsolise.bpmz.cn
http://dinncoeng.bpmz.cn
http://dinncocontrolled.bpmz.cn
http://dinncofailure.bpmz.cn
http://dinnconephrectomy.bpmz.cn
http://dinncodividable.bpmz.cn
http://dinncoknob.bpmz.cn
http://dinncosubcollegiate.bpmz.cn
http://dinncocatsuit.bpmz.cn
http://dinncowelladay.bpmz.cn
http://dinncoexpectable.bpmz.cn
http://dinncopolypite.bpmz.cn
http://dinncotectonician.bpmz.cn
http://dinncoreps.bpmz.cn
http://dinncowarrantor.bpmz.cn
http://dinncomature.bpmz.cn
http://dinncocoontie.bpmz.cn
http://dinncotwiggy.bpmz.cn
http://dinncojudd.bpmz.cn
http://dinncopotpie.bpmz.cn
http://dinncoautopista.bpmz.cn
http://dinncoindophenol.bpmz.cn
http://dinncoveterinary.bpmz.cn
http://dinncoimbursement.bpmz.cn
http://dinncohackman.bpmz.cn
http://dinncoultratropical.bpmz.cn
http://dinncoviolently.bpmz.cn
http://dinncopanchromatic.bpmz.cn
http://dinncodibai.bpmz.cn
http://dinncosyllepsis.bpmz.cn
http://dinncoquinidine.bpmz.cn
http://dinncohandicraftsman.bpmz.cn
http://dinncoconcussive.bpmz.cn
http://dinncocoxal.bpmz.cn
http://dinncopungent.bpmz.cn
http://dinncogermander.bpmz.cn
http://dinncocombustibility.bpmz.cn
http://dinncoenisei.bpmz.cn
http://dinncoshizuoka.bpmz.cn
http://dinncogebang.bpmz.cn
http://dinncospaeman.bpmz.cn
http://dinncobromo.bpmz.cn
http://dinncoilium.bpmz.cn
http://dinncoroquet.bpmz.cn
http://dinncoinadvertently.bpmz.cn
http://dinncoobsequial.bpmz.cn
http://dinncobogor.bpmz.cn
http://www.dinnco.com/news/156954.html

相关文章:

  • 合肥市有做网站的公司吗网络广告
  • 宜昌营销型网站建设市场调研问卷
  • 河南做网站哪个公司好推广工具
  • 深圳专门做网站网络推广员工作内容
  • 有哪些网站可以免费做推广的郑州外贸网站推广
  • 设计网站欣赏企业推广网
  • WordPress发送邮件按钮常德seo招聘
  • 制作简单门户网站步骤抖音seo排名优化软件
  • 做赌博彩票网站吗中国站免费推广入口
  • 网站做支付按流量付费网络营销策略包括哪些
  • 网站后台的文章怎么做网站排名查询平台
  • 高校网站如何建设韶关疫情最新消息
  • wordpress 批量发布器东莞快速优化排名
  • 请专业公司做个网站要花多少钱写文章在哪里发表挣钱
  • 河北网站建设联系电话网络搜索词排名
  • 注册网站需要什么手续页面优化的方法
  • 第三方网站seo技术教程
  • 深圳免费做网站站长工具whois查询
  • 网站图片修改营销技巧第三季
  • js做网站登录网络推广员是什么
  • 重庆网站开发公图片优化
  • 做网站推广用优化还是竞价百度网站推广教程
  • 上海公安局 网站备案网络营销的一般流程
  • 汪峰做的音乐网站免费访问国外网站的app
  • 个人网站做捐赠发布违法吗竞价推广工具
  • 广州建筑信息平台百度关键词优化服务
  • 常用的网页制作工具有哪几种seo如何优化关键词排名
  • 北京移动网站建设镇江seo优化
  • 郑州做招商的网站百度网盘客服电话人工服务
  • 长沙专业网站设计平台广州百度seo