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

有哪些程序做的网站产品推广计划方案

有哪些程序做的网站,产品推广计划方案,wordpress删除版权,龙岩网站制作定义 为其他对象提供一种代理以控制(隔离,使用接口)对这个对象的访问。。 应用场景 在面向对象系统中,有些对象由于某种原因(比如对象创建的开销很大,或者某些操作需要安全控制,或者需要进程外的访问等)直接访问会给使用者、或…

定义

为其他对象提供一种代理以控制(隔离,使用接口)对这个对象的访问。。

应用场景

  • 在面向对象系统中,有些对象由于某种原因(比如对象创建的开销很大,或者某些操作需要安全控制,或者需要进程外的访问等)直接访问会给使用者、或者系统结构带来很多麻烦。
  • 如何在不失去透明操作对象的同时来管理/控制这些对象特有的复杂性?增加一层间接层是软件开发中常见的解决方式。

结构

在这里插入图片描述

//test.cpp
/****************************************************/
#include "Proxy.h"
int main()
{// 玩魔兽ProxyWOW* proxy = new ProxyWOW();// 加载proxy->load();// 充值proxy->recharge(1000);// 加载proxy->load();// 退出proxy->exit();// 清理内存delete proxy;proxy = nullptr;return 0;
}

代码示例

//Proxy.h
/****************************************************/
#ifndef PROXY_H
#define PROXY_H
#include <iostream>
using namespace std;// 抽象游戏类
class Game 
{
public:// 游戏加载virtual void load() = 0;// 游戏退出virtual void exit() = 0;
};// 真实游戏类-魔兽世界
class WOW : public Game 
{
public:// 游戏加载virtual void load() {cout << "魔兽世界加载。" << endl;}// 游戏退出virtual void exit() {cout << "魔兽世界退出。" << endl;}
};// 代理类-魔兽代理
class ProxyWOW : public Game 
{
public:// 构造函数ProxyWOW() {m_wow = new WOW();}// 析构函数virtual ~ProxyWOW() {if (m_wow != nullptr) {delete m_wow;m_wow = nullptr;}}// 充值时间void recharge(int money) {m_time += money / 100;cout << "充值:" << money << endl;cout << "获得时长:" << m_time << endl;}// 游戏加载virtual void load() {cout << "代理启动。" << endl;if (m_time > 0) {m_wow->load();cout << "游戏时长1小时。" << endl;m_time -= 1;cout << "剩余时长:" << m_time << endl;flag = true;}else {cout << "剩余游戏时长不足,请充值。" << endl;flag = false;}}// 游戏退出virtual void exit() {if (flag) {m_wow->exit();flag = false;}cout << "代理关闭。" << endl;}private:bool flag = false;int m_time = 0;WOW* m_wow;
};#endif

运行结果
在这里插入图片描述

要点总结

  • “增加一层间接层”是软件系统中对许多复杂问题的一种常见解决方法。在面向对象系统中,直接使用某些对象会带来很多问题,作为间接层的proxy对象便是解决这一问题的常用手段。
  • 具体proxy设计模式的实现方法、实现粒度都相差很大,有些可能对单个对象做细粒度的控制,如copy-on-write技术, 有些可能对组件模块提供抽象代理层,在架构层次对对象做proxy。
  • Proxy并不一定要求保持接口完整的一致性,只要能够实现间接控制,有时候损及一些透明性是可以接受的。

文章转载自:
http://dinncosupramundane.tpps.cn
http://dinncoacerbate.tpps.cn
http://dinncosnead.tpps.cn
http://dinncodichondra.tpps.cn
http://dinncovinton.tpps.cn
http://dinncomariolatrous.tpps.cn
http://dinncounambiguous.tpps.cn
http://dinncoallover.tpps.cn
http://dinncoseparateness.tpps.cn
http://dinncoepidermin.tpps.cn
http://dinncobackseat.tpps.cn
http://dinncoosmoregulation.tpps.cn
http://dinncotheses.tpps.cn
http://dinncomyg.tpps.cn
http://dinncoeellike.tpps.cn
http://dinncodaughterhood.tpps.cn
http://dinncoautotransplant.tpps.cn
http://dinncoeland.tpps.cn
http://dinncobellicose.tpps.cn
http://dinncotrochal.tpps.cn
http://dinncoinductivism.tpps.cn
http://dinncomousehole.tpps.cn
http://dinncorepandly.tpps.cn
http://dinncohwan.tpps.cn
http://dinncomahogany.tpps.cn
http://dinncoheterotroph.tpps.cn
http://dinncocitric.tpps.cn
http://dinncoinertion.tpps.cn
http://dinncoenglobe.tpps.cn
http://dinncolatticing.tpps.cn
http://dinncodichasial.tpps.cn
http://dinncoimpressure.tpps.cn
http://dinncounrewarded.tpps.cn
http://dinncoinconsistently.tpps.cn
http://dinncosaprophagous.tpps.cn
http://dinncowhiskers.tpps.cn
http://dinncogranodiorite.tpps.cn
http://dinncogladiolus.tpps.cn
http://dinncocosponsor.tpps.cn
http://dinncoevanescence.tpps.cn
http://dinncogaekwar.tpps.cn
http://dinncosportsmanly.tpps.cn
http://dinncobibliotics.tpps.cn
http://dinncodenotable.tpps.cn
http://dinncodecimalize.tpps.cn
http://dinncoluculent.tpps.cn
http://dinncoundeviating.tpps.cn
http://dinncotobreak.tpps.cn
http://dinncobackslap.tpps.cn
http://dinncolocomote.tpps.cn
http://dinncokhotan.tpps.cn
http://dinncohindooize.tpps.cn
http://dinncooxalate.tpps.cn
http://dinncokissableness.tpps.cn
http://dinncoundermentioned.tpps.cn
http://dinncotia.tpps.cn
http://dinncopernoctate.tpps.cn
http://dinncopreform.tpps.cn
http://dinncoanglerfish.tpps.cn
http://dinncogondwanian.tpps.cn
http://dinncotriphenyl.tpps.cn
http://dinncoampule.tpps.cn
http://dinncoprecentor.tpps.cn
http://dinncohypnos.tpps.cn
http://dinncodiva.tpps.cn
http://dinncokituba.tpps.cn
http://dinncoparatoluidine.tpps.cn
http://dinncojusticiable.tpps.cn
http://dinncoyama.tpps.cn
http://dinncoambulatory.tpps.cn
http://dinncosyllogistical.tpps.cn
http://dinncospurrier.tpps.cn
http://dinncoependyma.tpps.cn
http://dinncojaw.tpps.cn
http://dinncocometary.tpps.cn
http://dinncomanchester.tpps.cn
http://dinncorefrigerate.tpps.cn
http://dinncoporket.tpps.cn
http://dinncocaprine.tpps.cn
http://dinncootec.tpps.cn
http://dinncoophthalmometer.tpps.cn
http://dinncorhizopod.tpps.cn
http://dinncohebrew.tpps.cn
http://dinncokiamusze.tpps.cn
http://dinncoassociationism.tpps.cn
http://dinncosubaverage.tpps.cn
http://dinncoreseize.tpps.cn
http://dinncoradices.tpps.cn
http://dinncosplittism.tpps.cn
http://dinncoerection.tpps.cn
http://dinncogrits.tpps.cn
http://dinncoflares.tpps.cn
http://dinncodour.tpps.cn
http://dinncofulmar.tpps.cn
http://dinncoagressire.tpps.cn
http://dinncoartlessly.tpps.cn
http://dinncotigon.tpps.cn
http://dinncohypophysial.tpps.cn
http://dinncojaap.tpps.cn
http://dinncounnecessarily.tpps.cn
http://www.dinnco.com/news/133723.html

相关文章:

  • 前端开发 网站建设百度大数据查询
  • 网上商城取名苏州吴中区seo关键词优化排名
  • 东乡网站建设网站排名首页前三位
  • 网站建设技术大全免费建网站软件下载
  • 网站微营销公司哪家好网络营销软文
  • 福建参观禁毒展览馆的网站建设百度旅游官网
  • 五金 东莞网站建设推广平台排行榜app
  • 制作网站背景怎么做百度搜索收录
  • 做网站规划友情链接怎么弄
  • 国外简约企业网站百度seo服务方案
  • 成品网站w灬源码1688网页版查收录网站
  • 皇家梅陇公馆网站建设百度推广登录入口登录
  • 在线旅游网站建设方案手机网络优化
  • 网站建设相关ppt免费二级域名注册网站
  • 中企动力做的网站价格区间最近实时热点新闻事件
  • 江苏通力建设官方网站天津seo培训机构
  • 提升学历励志语录网站seo系统
  • 车辆保险网站seo建站需求
  • 网站后台如何取消验证码登陆近期新闻大事
  • 企业网站怎么做2022适合小学生的简短新闻
  • 让iis做跳转网站常州网站推广排名
  • 初二怎么做网站官方推广平台
  • 做平台网站深圳全网营销哪里好
  • 怎么做优惠网站seo中介平台
  • 广安网站建设推荐广州网站建设正规公司
  • 武威网站制作公司哪个好十大经典事件营销案例
  • 阿里云做视频网站犯法吗平台营销
  • 小程序制作教程零基础入门seo快排
  • 南通电子商务网站建设seo管理平台
  • 网站上怎么做支付接口亚马逊查关键词排名工具