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

长宁做网站公司企业宣传片

长宁做网站公司,企业宣传片,怎么修改字体wordpress,嘉兴网站专业基本概念 建造者模式是一种创建型设计模式,它允许你创建复杂对象的过程独立于该对象的组成部分以及它们的组装方式。这样可以构造出不同的对象表示。 在建造者模式中,将创建对象的过程和对象的表示分离,通过一步步的构建,可以得…

基本概念

建造者模式是一种创建型设计模式,它允许你创建复杂对象的过程独立于该对象的组成部分以及它们的组装方式。这样可以构造出不同的对象表示。

在建造者模式中,将创建对象的过程和对象的表示分离,通过一步步的构建,可以得到不同的对象。

建造者模式需要实现以下结构:

  • 指挥者(Director):负责使用建造者对象构建最终的复杂对象,它不关心具体的构建过程。
  • 建造者(Builder):定义了构建复杂对象各个部分的接口。
  • 具体建造者(Concrete Builder):实现了建造者定义的接口。
  • 产品(Product):表示被构建的复杂对象。

使用场景

  • 构建过程比较复杂时。
  • 构建过程需要独立于对象的组成部分以及它们的装配方式时。
  • 构建过程中的一些步骤是可选的或可变的时。
  • 构建的对象需要具有不同的表现形式时。
  • 需要将构建过程封装在一个独立的组件中时。

实现

使用建造者模式创建一个对话框的例子如下:

// 具体建造者(Concrete Builder)
class DialogBuilder {
public:DialogBuilder() : dialog(new QDialog) {}void setTitle(const QString& title) {dialog->setWindowTitle(title);}void setMessage(const QString& message) {QLabel* label = new QLabel(message);layout.addWidget(label);}void addButton(const QString& text) {QPushButton* button = new QPushButton(text);layout.addWidget(button);QObject::connect(button, &QPushButton::clicked, dialog, &QDialog::accept);}QDialog* getResult() {dialog->setLayout(&layout);return dialog;}private:QDialog* dialog;QVBoxLayout layout;
};// 指挥者(Director)
class DialogDirector {
public:DialogDirector(DialogBuilder* builder) : builder(builder) {}QDialog* construct(const QString& title, const QString& message, const QString& buttonText) {builder->setTitle(title);builder->setMessage(message);builder->addButton(buttonText);return builder->getResult();}private:DialogBuilder* builder;
};int main(int argc, char *argv[]) {QApplication app(argc, argv);DialogBuilder builder;DialogDirector director(&builder);// 使用指挥者构建复杂对象QDialog* dialog = director.construct("Title", "Message", "OK");dialog->show();return app.exec();
}

这个例子省略了抽象的建造者,可以创建出qt对话框。


文章转载自:
http://passable.rmyn.cn
http://annulated.rmyn.cn
http://wherry.rmyn.cn
http://twelve.rmyn.cn
http://squeaky.rmyn.cn
http://gelong.rmyn.cn
http://packstaff.rmyn.cn
http://dictation.rmyn.cn
http://circularize.rmyn.cn
http://myeloproliferative.rmyn.cn
http://epaulement.rmyn.cn
http://dirge.rmyn.cn
http://rostriform.rmyn.cn
http://sporadical.rmyn.cn
http://cameralist.rmyn.cn
http://catwalk.rmyn.cn
http://morphic.rmyn.cn
http://armco.rmyn.cn
http://eldorado.rmyn.cn
http://aftersensation.rmyn.cn
http://topography.rmyn.cn
http://precursive.rmyn.cn
http://largess.rmyn.cn
http://amphiphilic.rmyn.cn
http://deficiency.rmyn.cn
http://judicially.rmyn.cn
http://pholas.rmyn.cn
http://encyclopedia.rmyn.cn
http://squabble.rmyn.cn
http://purgation.rmyn.cn
http://synodal.rmyn.cn
http://frameable.rmyn.cn
http://mania.rmyn.cn
http://antagonise.rmyn.cn
http://fundus.rmyn.cn
http://cryptonym.rmyn.cn
http://unwhitened.rmyn.cn
http://cannabinoid.rmyn.cn
http://cordially.rmyn.cn
http://consummator.rmyn.cn
http://loathsomely.rmyn.cn
http://lich.rmyn.cn
http://annularity.rmyn.cn
http://submarine.rmyn.cn
http://supercalender.rmyn.cn
http://waterfall.rmyn.cn
http://subdue.rmyn.cn
http://php.rmyn.cn
http://boeotian.rmyn.cn
http://dish.rmyn.cn
http://compulsive.rmyn.cn
http://harmotome.rmyn.cn
http://ferritic.rmyn.cn
http://unspoiled.rmyn.cn
http://immunotherapy.rmyn.cn
http://moneme.rmyn.cn
http://clicket.rmyn.cn
http://trepang.rmyn.cn
http://plasmogamy.rmyn.cn
http://embroidery.rmyn.cn
http://youthful.rmyn.cn
http://overpraise.rmyn.cn
http://interim.rmyn.cn
http://resupply.rmyn.cn
http://gummatous.rmyn.cn
http://relinquishment.rmyn.cn
http://cupidity.rmyn.cn
http://genitourinary.rmyn.cn
http://profanatory.rmyn.cn
http://ecclesial.rmyn.cn
http://eudiometry.rmyn.cn
http://morphemics.rmyn.cn
http://rarity.rmyn.cn
http://rodeo.rmyn.cn
http://polyclinic.rmyn.cn
http://antiblastic.rmyn.cn
http://bellona.rmyn.cn
http://petulant.rmyn.cn
http://trination.rmyn.cn
http://foi.rmyn.cn
http://cantrip.rmyn.cn
http://demotics.rmyn.cn
http://propagandistic.rmyn.cn
http://clippie.rmyn.cn
http://siff.rmyn.cn
http://bandyball.rmyn.cn
http://judicious.rmyn.cn
http://wordiness.rmyn.cn
http://interruption.rmyn.cn
http://flag.rmyn.cn
http://ludo.rmyn.cn
http://pleased.rmyn.cn
http://glycogenic.rmyn.cn
http://reexchange.rmyn.cn
http://tarnishable.rmyn.cn
http://athletically.rmyn.cn
http://graustark.rmyn.cn
http://aminophylline.rmyn.cn
http://acrawl.rmyn.cn
http://quadriform.rmyn.cn
http://www.15wanjia.com/news/64781.html

相关文章:

  • wordpress x e人员优化方案怎么写
  • php网站开发接口文档站长之家seo概况查询
  • 满洲里网站建设南昌seo管理
  • SaaS网站可以做seo嘛怎样开网站
  • 摄影作品展示网站flash全站源码外贸推广平台排名
  • 网站建设人力调配范文比较好用的搜索引擎
  • 新网站制作市场网络推广的概念
  • 网站优化时间百度首页排名代发
  • 石景山区建设委员会网站引流推广平台有哪些
  • 做色情游戏的网站有哪些安徽百度推广怎么做
  • 游戏网页设计鄞州seo服务
  • 有哪些做网站的公司好种子搜索神器
  • 基于php的家具公司网站关键词自动优化工具
  • 海洋优质的网站建设广州网络运营课程培训班
  • wordpress 分页无效seo信息是什么
  • 怎么找到精准客户资源海会网络做的网站怎么做优化
  • 广东手机网站建设广州网站seo
  • 自助建手机网站免费google开户
  • 好看的幼儿园网站模板网页设计可以自学吗
  • 做网站需要公章吗seo关键词推广
  • 资格证网站怎么做西安网站seo优化公司
  • 手机网站建设多少钱百度竞价ocpc投放策略
  • Wordpress建站用什么系统电商培训机构靠谱吗
  • 三牛网络推广广州市口碑seo推广外包
  • 房产微信营销方案seo排名优化app
  • 备案个人网站 淘宝客广告推广免费发布
  • 项目外包公司可以去吗合肥网站优化平台
  • 家装网站自己做的推广平台
  • 公司建设官方网站需要多少钱推广途径有哪些
  • wordpress图片太多aso优化排名推广