• 输出分离与输出抽象


    /* 输出分离与输出抽象 */
    
    #include 
    #include 
    
    class Writer{ //输出抽象//基类
    public:
    	virtual ~Writer() { };
    	virtual void send(const char*, int ) = 0;
    };
    
    class FileWriter:public Writer{//输出子类
    public:
    	FileWriter( FILE*f );
    	void send(const char*p, int n );
    private:
    	FILE*fp;
    };
    
    class MyString //MyString类
    {
    	char *p;
    public:
    	MyString();    
    	MyString(const char *s);
    	MyString(const MyString & x);
    	MyString & operator=(const MyString & x);
    	~MyString();
    	char & operator[](int x)const;//提取字符函数
    	int size()const;
    };
    
    FileWriter::FileWriter( FILE*f ):fp(f) { }
    void FileWriter::send(const char* p, int n ){
    	for(int i=0; i<n; ++i)
    		putc(*p++, fp );
    }
    
    MyString::MyString(){ p = NULL; }
    MyString::MyString(const char *s){
    	p = new char[strlen(s)+ 1];
    	strcpy(p,s);
    }
    MyString::MyString(const MyString & x)
    {
    	if(x.p){
    		p = new char[strlen(x.p)+1];
    		strcpy(p,x.p);
    	}
    	else
    		p = NULL;
    }
    MyString& MyString::operator=(const MyString & x)
    {
    	if(p == x.p)
    		return *this;
    	if(p)
    		delete[] p;
    	if(x.p)
    	{
    		p = new char[strlen(x.p)+1];
    		strcpy(p,x.p);
    	}
    	else
    		p = NULL;
    	return *this;
    }   
    MyString::~MyString(){ if(p)delete []p; }
    char& MyString::operator[](int x)const{ return p[x]; }
    int MyString::size()const { if(p) return strlen(p) ; return 0; }
    
    //输出分离//重载<<  
    Writer& operator << ( Writer& w, const MyString& s ){
    	for( int i=0; i < s.size(); ++i )
    	{//Writer的send函数char类型参数与MyString提取字符函数的耦合
    		char c = s[i];
    		w.send( &c, 1 ); //Writer与MyString的耦合
    	}
    }
    
    int main()
    {
    	FileWriter fw1( stdout );
    	MyString s = "Hello";
    	fw1 << s;
    	FILE* f = fopen( "d:\\1.txt","w" );
    	FileWriter fw2(f);
    	fw2 << s;
    	
        return 0;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
  • 相关阅读:
    Vue3类与样式绑定
    CISC和RISC的比较
    html文字一行时靠右,多行时靠左
    TS第一讲-----基础类型
    EL9在线快速部署安装Rancher
    C++20:换了“心“的auto关键字
    快速计算发票金额
    【Linux】系统安全及应用
    Map集合概述和一般使用
    CMU 15-445 Project 0 实现字典树
  • 原文地址:https://blog.csdn.net/tsnotary/article/details/134551570