- 博客(9)
- 收藏
- 关注
原创 设计模式c++
模板模式#include <iostream>#include <string>using namespace std;class people { void send() { cout << "我的名字是:"; cout << name(); cout << ", 年龄:" << age(); cout << ", 身高:" << height() << endl;
2021-06-10 10:58:54 77
原创 设计模式c++
外观模式//外观模式(Facade Pattern)隐藏系统的复杂性,并向客户端提供了一个客户端可以访问系统的接口。//将多个子系统封装起来,提供一个更简洁的接口供外部调用。#include <iostream>#include <string>using namespace std;class jecket {public: void wear() { cout << "穿上衣" << endl; } void takeoff(
2021-06-09 19:46:46 84
原创 设计模式c++
原型模式//原型模式(Prototype Pattern)是用于创建重复的对象,同时又能保证性能。//原型模式就是用来克隆对象的。#include <iostream>#include <string>using namespace std;class WorkExperience {public: string workDate; string company;public: void setWorkDate(string v) { workDate =
2021-06-09 14:45:36 79
原创 设计模式c++
静态代理模式#include <iostream>#include <string>using namespace std;class Subject {public: virtual void request() = 0; virtual void sendMsg() = 0;};class RealSubject : public Subject{ virtual void request() { cout << "real reques
2021-06-09 11:21:22 63
原创 设计模式c++
装饰模式//装饰模式:动态地给一个对象增加一些额外的职责#include <iostream>#include <string>using namespace std;class people {public: virtual int getValue() = 0;};class clothes :public people{public: virtual int getValue() { return 80; }};class Decorat
2021-06-09 10:23:43 78
原创 设计模式c++
策略模式#include <iostream>#include <string>using namespace std;class fruit {public: virtual string getCorlor() = 0;};class apple :public fruit {public: virtual string getCorlor() { return "红色"; }};class pear :public fruit {publ
2021-06-09 08:55:39 59
原创 c++ 设计模式
工厂模式1、简单工厂模式#pragma once#include <iostream>#include <string>using namespace std;class fruit {public: virtual string getCorlor() = 0;};class apple :public fruit {public: virtual string getCorlor() { return "红色"; }};class pea
2021-06-08 20:57:38 123
原创 c++ IO操作
c++ IO操作记录一下c++的几种IO类,方便以后写代码时查阅。iostream 用于读写流,fstream用于读写文件,sstream用于从string类中读写数据iostream类常用的操作是cin和cout#include <iostream>using namespace std;int main() { int info; cin >> info; cout << info; return 0;}fstream类
2020-09-22 17:14:03 834 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人