<<C++Primer PLus 第五版>>读书笔记2

类的自动转换和强制类型转换
1)如果构造函数中含有类似的拷贝函数:

CStonewt( double lbs )
{
 m_nStone = int( lbs ) / Lbs_per_stn;
 m_fPds_left = int( lbs ) % Lbs_per_stn + lbs - int( lbs );
 m_fPounds = lbs;
}

那么使用
CStonewt myCat;
myCat = 19;
程序将使用构造函数CStonewt( double lbs )来创建一个临时的CStonewt对象,并将19.6作为初始值。随后,采用逐成员赋值方式将该临时对象的内容赋值到myCat中(比如m_nStone = int(

lbs ) / Lbs_per_stn;)。这一过程称为隐式转换,因为他是自动进行的,而不需要显示强制类型转换。如果换成CStonewt( double lbs, int i )有两个参数,因此不能用来转换类型。

  1. #include "stdafx.h"  
  2. #include "iostream"  
  3. using namespace std;  
  4.   
  5. namespace  
  6. {  
  7.     class CStonewt  
  8.     {  
  9.     public:  
  10.         CStonewt( double lbs )  
  11.         {  
  12.             m_nStone = int( lbs ) / Lbs_per_stn;  
  13.             m_fPds_left = int( lbs ) % Lbs_per_stn + lbs - int( lbs );  
  14.             m_fPounds = lbs;  
  15.         }  
  16.         CStonewt( int stn, double lbs )  
  17.         {  
  18.             m_nStone = stn;  
  19.             m_fPds_left = lbs;  
  20.             m_fPounds = stn * Lbs_per_stn + lbs;  
  21.         }  
  22.         CStonewt()  
  23.         {  
  24.             m_nStone = m_fPounds = m_fPds_left = 0;  
  25.         }  
  26.         ~CStonewt()  
  27.         {  
  28.   
  29.         }  
  30.         void show_lbs() const  
  31.         {  
  32.             cout << m_nStone << " stone" << m_fPds_left << " pound\n" << endl;;  
  33.         }  
  34.         void show_stn() const  
  35.         {  
  36.             cout << m_fPounds << " pound\n" << endl;    
  37.         }  
  38.     private:  
  39.         enum { Lbs_per_stn = 14 };  
  40.         int m_nStone;  
  41.         double m_fPds_left;  
  42.         double m_fPounds;  
  43.     };  
  44. }  
  45.   
  46. int _tmain(int argc, _TCHAR* argv[])  
  47. {  
  48.     CStonewt myCat;  
  49.     myCat = 19;  
  50.   
  51.     return 0;  
  52. }  

 

2)将构造函数用作自动类型转换函数似乎是一项不错的特性。不过,当程序员拥有更丰富的C++经验时,将发现这种自动也行并非总是合乎需要的,因为这会导致意外的类型转换。因此,最新

的C++实现新增了一个关键字(explicit),用来关闭这种自动特性。也就是说,可以这样声明构造函数:

  1. explicit CStonewt( double lbs )  
  2. {  
  3.     m_nStone = int( lbs ) / Lbs_per_stn;  
  4.     m_fPds_left = int( lbs ) % Lbs_per_stn + lbs - int( lbs );  
  5.     m_fPounds = lbs;  
  6. }  

但此时仍然可以进行myCat = (CStonewt)19.5;强制类型转换。

3)把CStonewt类对象赋值给int、double变量
要进行这样的操作时,编译器发现右侧是CStonewt类型,而左侧是int、double类型,因此它将查看程序员是否定义了与此匹配的转换函数(如果没有找到这样的定义,编译器将生成错误消息

,指出无法将CStonewt赋给int、double)
如果想要使用这种转换函数,要转换为typeName类型,需要使用这种形式的转换函数:
operator typeName();
注意以下几点:
a、转换函数必须是类方法
b、转换函数不能指定返回类型
c、转换函数不能有参数

[html]  view plain copy print ?
  1. #include "stdafx.h"  
  2. #include "iostream"  
  3. using namespace std;  
  4.   
  5. namespace  
  6. {  
  7.     class CStonewt  
  8.     {  
  9.     public:  
  10.         explicit CStonewt( double lbs )  
  11.         {  
  12.             m_nStone = int( lbs ) / Lbs_per_stn;  
  13.             m_fPds_left = int( lbs ) % Lbs_per_stn + lbs - int( lbs );  
  14.             m_fPounds = lbs;  
  15.         }  
  16.         CStonewt( int stn, double lbs )  
  17.         {  
  18.             m_nStone = stn;  
  19.             m_fPds_left = lbs;  
  20.             m_fPounds = stn * Lbs_per_stn + lbs;  
  21.         }  
  22.         CStonewt()  
  23.         {  
  24.             m_nStone = m_fPounds = m_fPds_left = 0;  
  25.         }  
  26.         ~CStonewt(){}  
  27.         operator int() const  
  28.         {  
  29.             return int( 100.5 );  
  30.         }  
  31.         operator double() const  
  32.         {  
  33.             return  999.5 ;  
  34.         }  
  35.     private:  
  36.         enum { Lbs_per_stn = 14 };  
  37.         int m_nStone;  
  38.         double m_fPds_left;  
  39.         double m_fPounds;  
  40.     };  
  41. }  
  42.   
  43. int _tmain(int argc, _TCHAR* argv[])  
  44. {  
  45.     CStonewt myCat;  
  46.     myCat = (CStonewt)19.5;  
  47.     double fValue = myCat;  
  48.     int iValue = myCat;  
  49.     cout << "iValue is:" << iValue  << endl;  
  50.     cout << "fValue is:" << fValue  << endl;  
  51.   
  52.     return 0;  
  53. }  


类和动态内存分配
    小插曲 : strlen()返回字符串长度,但不包括末尾的空字符,因此构造函数len + 1,使分配的内存能够存储包含空字符的字符串
1)含有很多隐藏错误的stringBad类

StringBad.h:
  1. #ifndef _STRINGBAD_H_  
  2. #define _STRINGBAD_H_  
  3.   
  4. #include "iostream"  
  5. #include "string"  
  6. using namespace std;  
  7.   
  8. class StringBad  
  9. {  
  10. public:  
  11.     StringBad();  
  12.     StringBad( const char* str );  
  13.     ~StringBad();  
  14.   
  15.     friend ostream& operator<< ( ostream& os, const StringBad& sb );  
  16. private:  
  17.     char* m_str;  
  18.     int m_nLen;  
  19. public:  
  20.     static int num_strings;  
  21. };  
  22.   
  23. #endif  


StringBad.cpp:

  1. #include "stdafx.h"  
  2. #include "StringBad.h"  
  3.   
  4. int StringBad::num_strings = 0;  
  5.   
  6. StringBad::StringBad()  
  7. {  
  8.     m_nLen = 4;  
  9.     m_str = new char[ 4 ];  
  10.     num_strings++;  
  11.     strcpy_s( m_str, strlen( "C++" ) + 1,"C++" );  
  12.     cout << StringBad::num_strings << ": \"" << m_str << "\" object created" << endl;  
  13. }  
  14.   
  15. StringBad::StringBad( const char* str )  
  16. {  
  17.     m_nLen = strlen( str );  
  18.     m_str = new char[ m_nLen + 1 ];  
  19.     num_strings++;  
  20.     strcpy_s( m_str,m_nLen + 1 , str );  
  21.     cout << num_strings << ": \"" << m_str << "\" object created" << endl;  
  22. }  
  23.   
  24. StringBad::~StringBad()  
  25. {  
  26.     if ( m_str )  
  27.     {  
  28.         delete[] m_str;  
  29.     }  
  30.     num_strings--;  
  31.     cout << "in the StringBad::~StringBad() num_strings is:" << num_strings << endl;  
  32. }  
  33.   
  34. ostream& operator<< ( ostream& os, const StringBad& sb )  
  35. {  
  36.     os << "this StringBad str is:" << sb.m_str << endl;  
  37.     os << "this StringBad len is:" << sb.m_nLen << endl;  
  38.     return os;  
  39. }  


testStringBad.cpp:

  1. #include "stdafx.h"  
  2. #include "iostream"  
  3. using namespace std;  
  4. #include "StringBad.h"  
  5.   
  6. void callme1( StringBad& rStringBad )  
  7. {  
  8.     cout << "in the function callme1" << endl;  
  9.     cout << "in the function callme1" << rStringBad << endl;  
  10. }  
  11.   
  12. void callme2( StringBad stringBad )  
  13. {  
  14.     cout << "in the function callme2" << endl;  
  15.     cout << "in the function callme1" << stringBad << endl;  
  16. }  
  17.   
  18. int _tmain(int argc, _TCHAR* argv[])  
  19. {  
  20.     StringBad headline1( "Create headline1" );  
  21.     StringBad headline2( "Create headline2" );  
  22.     StringBad sport( "Create sport" );  
  23.   
  24.     cout << headline1 << endl;  
  25.     cout << headline2 << endl;  
  26.     cout << sport << endl;  
  27.   
  28.     callme1( headline1 );  
  29.     cout << headline1 << endl;  
  30.     callme2( headline2 );  
  31.     cout << headline2 << endl;  
  32.   
  33.     cout << "Initialize one object to another:" << endl;  
  34.     StringBad sailer = sport;  
  35.     cout << "sailer" << sailer << endl;  
  36.     cout << "Assign one object to anther:" << endl;  
  37.   
  38.     StringBad knot;  
  39.     knot = headline1;  
  40.     cout << "knot" << knot << endl;  
  41.     cout << "End of main()" << endl;  
  42.   
  43.     cout << "num_strings is:" << StringBad::num_strings << endl;  
  44.   
  45.     return 0;  
  46. }  


2)
复制拷贝函数

  1. StringBad& StringBad::operator= ( const StringBad& st)  
  2. {  
  3.     ifthis == &st )  
  4.     {  
  5.         return *this;  
  6.     }  
  7.     delete[] str;  
  8.     len = st.len;  
  9.     str = new char[ strlen( len + 1 ) ];  
  10.     str::strcpy( str, st.str );  
  11.     return *this;  
  12. }  


3)
重写下标运算符

  1. char& operator[] ( int i )  
  2. {  
  3.  return m_str[ i ];  
  4. }  
  5. const char& operator[] ( int i ) const  
  6. {  
  7.  return m_str[ i ];  
  8. }  

为什么要提供两个版本。原因是m_str是常量,而上述方法无法确保不修改数据。
但在重载时,C++将区分常量和非常量函数的特征标,因此提供了另一个仅供const String对象使用的
operator[]()版本

4)
新的String类

  1. #include "stdafx.h"  
  2. #include "iostream"  
  3. #include "string"  
  4. using namespace std;  
  5.   
  6. #define MAXTEMPSIZE 256  
  7.   
  8. class myString  
  9. {  
  10. public:  
  11.     myString()  
  12.     {  
  13.         m_nLen = 4;  
  14.         m_str = new char[ m_nLen + 1 ];  
  15.         strcpy_s( m_str, strlen( "C++" ) + 1, "C++" );  
  16.         num_string++;  
  17.         cout << "in the myString():" << endl;  
  18.     }  
  19.     myString( char* str )  
  20.     {  
  21.         m_nLen = strlen( str );  
  22.         m_str = new char[ m_nLen + 1 ];  
  23.         strcpy_s( m_str, m_nLen + 1, str );  
  24.         num_string++;  
  25.         cout << "in the myString( char* str ):" << endl;  
  26.     }  
  27.     myString( const myString& rString )  
  28.     {  
  29.         m_nLen = strlen( rString.m_str );  
  30.         m_str = new char[ m_nLen + 1 ];  
  31.         strcpy_s( m_str, m_nLen + 1, rString.m_str );  
  32.         num_string++;  
  33.         cout << "in the myString( const myString& rString ):" << endl;  
  34.     }  
  35.     ~myString()  
  36.     {  
  37.         if ( m_str )  
  38.         {  
  39.             cout << "this m_str is:" << m_str << endl;  
  40.             delete[] m_str;  
  41.         }  
  42.         num_string--;  
  43.         cout << "in the ~myString():" << endl;  
  44.     }  
  45.     static int HowMany()  
  46.     {  
  47.         return num_string;  
  48.     }  
  49.     inline int length() const  
  50.     {  
  51.         return m_nLen;  
  52.     }  
  53.     myString& operator= ( const myString& rString )  
  54.     {  
  55.         if ( this == &rString )  
  56.         {  
  57.             return *this;  
  58.         }  
  59.         m_nLen = rString.m_nLen;  
  60.         m_str = new char[ m_nLen + 1 ];  
  61.         strcpy_s( m_str, m_nLen + 1, rString.m_str );  
  62.         num_string++;  
  63.         cout << "in the myString& operator= ( const myString& rString ):" << endl;  
  64.         return *this;  
  65.     }  
  66.     myString& operator= ( const char* str )  
  67.     {  
  68.         m_nLen = strlen( str );  
  69.         m_str = new char[ m_nLen + 1 ];  
  70.         strcpy_s( m_str, m_nLen + 1, str );  
  71.         num_string++;  
  72.         cout << "in the myString& myString& operator= ( const char* str ):" << endl;  
  73.         return *this;  
  74.     }  
  75.     char& operator[] ( int i )  
  76.     {  
  77.         return m_str[ i ];  
  78.     }  
  79.     const char& operator[] ( int i ) const  
  80.     {  
  81.         return m_str[ i ];  
  82.     }  
  83.   
  84.     friend ostream& operator<< ( ostream& os, const myString& rString );  
  85.     friend istream& operator>> ( istream& is, myString& rString );  
  86.     friend bool operator< ( const myString& rLeft, const myString& rRight );  
  87.     friend bool operator> ( const myString& rLeft, const myString& rRight );  
  88.     friend bool operator== ( const myString& rLeft, const myString& rRight );  
  89. private:  
  90.     int m_nLen;  
  91.     char* m_str;  
  92.     static int num_string;  
  93. };  
  94.   
  95. int myString::num_string = 0;  
  96.   
  97. ostream& operator<< ( ostream& os, const myString& rString )  
  98. {  
  99.     os << "this myString m_str is:" << rString.m_str << endl;  
  100.     return os;  
  101. }  
  102.   
  103. istream& operator>> ( istream& is, myString& rString )  
  104. {  
  105.     char temp[ MAXTEMPSIZE ];  
  106.     is.get( temp, MAXTEMPSIZE );  
  107.     if ( is )  
  108.     {  
  109.         rString = temp;  
  110.     }  
  111.     while ( is && is.get() != '\n' )  
  112.     {  
  113.         continue;  
  114.     }  
  115.     return is;  
  116. }  
  117.   
  118. bool operator< ( const myString& rLeft, const myString& rRight )  
  119. {  
  120.     return ( strcmp( rLeft.m_str, rRight.m_str ) < 0 );  
  121. }  
  122.   
  123. bool operator> ( const myString& rLeft, const myString& rRight )  
  124. {  
  125.     return ( strcmp( rLeft.m_str, rRight.m_str ) > 0 );  
  126. }  
  127.   
  128. bool operator== ( const myString& rLeft, const myString& rRight )  
  129. {  
  130.     return ( strcmp( rLeft.m_str, rRight.m_str ) == 0 );  
  131. }  
  132.   
  133. void showString( const myString myStr )  
  134. {  
  135.     cout << "in the showString:" << endl;  
  136.     cout << myStr << endl;  
  137. }  
  138.   
  139. void showString2( const myString& myStr )  
  140. {  
  141.     cout << "in the showString2:" << endl;  
  142.     cout << myStr << endl;  
  143. }  
  144.   
  145.   
  146. int _tmain(int argc, _TCHAR* argv[])  
  147. {  
  148.     myString headLine1( "create headLine1" );  
  149.     myString headLine2( "create headLine2" );  
  150.     cout << headLine1<< endl;  
  151.     cout << headLine2<< endl;  
  152.   
  153.     myString sport;  
  154.     cout << sport<< endl;  
  155.     myString sport2 = sport;  
  156.     cout << sport2<< endl;  
  157.   
  158.     showString( headLine1 );  
  159.     showString( headLine2 );  
  160.     showString( sport );  
  161.     showString( sport2 );  
  162.   
  163.     showString2( headLine1 );  
  164.     showString2( headLine2 );  
  165.     showString2( sport );  
  166.     showString2( sport2 );  
  167.   
  168.     cout << "headLine1 > headLine2:" << ( headLine1 > headLine2 ) << endl;  
  169.     cout << "headLine1 < headLine2:" << ( headLine1 < headLine2 ) << endl;  
  170.     cout << "headLine1 == headLine2:" << ( headLine1 == headLine2 ) << endl;  
  171.   
  172.     cout << "headLine1 get howmany is:" << headLine1.HowMany() << endl;  
  173.     cout << "headLine2 get length is:" << headLine2.length() << endl;  
  174.   
  175.     myString headLine3 = "create headLine3";  
  176.     cout << headLine3<< endl;  
  177.     showString( headLine3 );  
  178.     showString2( headLine3 );  
  179.     cout << headLine3<< endl;  
  180.   
  181.     myString headLine4 = headLine3;  
  182.     cout << headLine4<< endl;  
  183.     showString( headLine4 );  
  184.     showString2( headLine4 );  
  185.     cout << headLine4<< endl;  
  186.   
  187.     cout << "return [] is:" << headLine4[3] << endl;  
  188.     cin >> headLine4[3];  
  189.     cout << "return [] is:" << headLine4[3] << endl;  
  190.     cout << headLine4<< endl;  
  191.     showString( headLine4 );  
  192.     showString2( headLine4 );  
  193.     cout << headLine4<< endl;  
  194.   
  195.     cout << "========================================" << endl;  
  196.   
  197.     return 0;  
  198. }  

6)再谈布局new操作符
布局new操作符能够在分配内存时指定内存位置
  1. #include "stdafx.h"  
  2. #include "iostream"  
  3. using namespace std;  
  4. #include "new"  
  5. #include "string"  
  6.   
  7. #define  BUF    512  
  8.   
  9. class CJustString  
  10. {  
  11. public:  
  12.     CJustString( const string& str = "create CJustString"int iValue = 0 )  
  13.     {  
  14.         m_strWords = str;  
  15.         m_nNumber = iValue;  
  16.         cout << m_strWords << " constructed" << endl;  
  17.     }  
  18.     ~CJustString()  
  19.     {  
  20.         cout << m_strWords << " destroyed" << endl;  
  21.     }  
  22.     void Show() const  
  23.     {  
  24.         cout << m_strWords << ", " << m_nNumber << endl;  
  25.     }  
  26. private:  
  27.     string m_strWords;  
  28.     int m_nNumber;  
  29. };  
  30.   
  31. int _tmain(int argc, _TCHAR* argv[])  
  32. {  
  33.     int* buffer = new int[ BUF ];  
  34. //  char* buffer = new char[ BUF ];  
  35.     CJustString *pc1, *pc2;  
  36.     pc1 = new ( buffer ) CJustString;  
  37.     pc2 = new CJustString( "Heap1", 20 );  
  38.   
  39.     cout << "Memory block address:\n" << "buffer:" << ( void* )buffer << " heap:" << pc2 << endl;  
  40.     cout << "Memory contents:" << endl;  
  41.     cout << pc2 << ":" << endl;  
  42.     pc2->Show();  
  43.   
  44.     CJustString *pc3, *pc4;  
  45.     pc3 = new ( buffer ) CJustString( "Bad Idea", 6 );  
  46.     pc4 = new CJustString( "Heap2", 6 );  
  47.     cout << "Memory contents:" << endl;  
  48.     cout << pc3 << ":" << endl;  
  49.     pc3->Show();  
  50.     cout << pc4 << ":" << endl;  
  51.     pc4->Show();  
  52.   
  53.     delete pc2;  
  54.     delete pc4;  
  55.     delete[] buffer;  
  56.     cout << "Done" << endl;  
  57.   
  58.     return 0;  
  59. }  

该程序使用new操作符创建了一个512*4字节的内存换成去,然后使用new操作符在堆中创建两个CJustString对象,并试图使用布局new操作符在内存缓冲区中创建两个CJustString对象。最后

,他使用delete来释放使用new分配的内存。当然这里不需要单独delete pc1,只要delete[] buffer;便可。

7)队列模拟
    进一步了解类后,可将这方面的知识用于解决编程问题。Headther银行打算在Food Heap超市开设一个自动柜员机(ATM)。Food Heap超市的管理则担心排队等待使用ATM的人流会干扰超市

而定交通,希望限制排队等待的人数。Headther银行希望对顾客排队等待的时间进行估测。要编写一个程序来模拟这种情况,让超市的管理者可以了解ATM可能造成的影响。
    对于这种问题,最自然的方法是使用顾客队列。队列是一种抽象的数据类型(ADT),可以存储有序的项目序列。新项目被添加在队尾,并可以删除队首的项目。队列有点像堆栈,不过堆栈

在同一段进行添加和删除。这使得堆栈是一种后进先出(LIFO)的结构,而队列是先进先出(FIFO)的。从概念上说,队列就好比是收款台或者ATM前面排的队,所以对于上述问题,队列非常合适。因此,工程的任务之一是定义一个Queue类。
   

    队列的项目是顾客。Headther银行的代表介绍:通常,三分之一的顾客只需要一分钟便可获得服务器,三分之一的顾客需要两分钟,另外三分之一的顾客需要三分钟。另外,顾客到达的

时间是随机的,但每个小时使用自动柜员机的顾客数量相当稳定。工程的另外两项任务是:设计一个表示顾客的类:编写一个程序来模拟顾客和队列之间的交互。

    队列类:
1.队列存储有序的项目序列
2.队列所能容纳的项目数有一定的限制
3.应当能够创建空队列
4.应当能够检查队列是否为空
5.应当能够检查队列是否满的
6.应当能够在队尾添加项目
7.应当能够在队首删除项目
8.应当能够确定队列中的项目数
设计类时,需要开发公有接口和私有实现
    Customer类:
通常ATM客户有很多属性,例如姓名、账户和账户结余。不过,这里的模拟需要使用的唯一一个属性是客户核实进入队列以及客户交易所需的时间。当模拟生成新客户时,程序将创建一个新的

客户对象,并在其中存储客户的到达时间以及一个随机生成的交易时间。当客户到达队首时,程序将记录此时的时间,并将其与进入队列的时间相减,得到客户的等待时间。
    模拟:
1、判断是否来了新的客户。如果来了,并且此时队列未满,则将它添加到队列中,否则拒绝客户入队。
2、如果没有客户在进行交易,则选取队列的第一个客户。确定该客户的已等待时间,并将wait_time
 计数器设置为新客户所需的办理时间
3、如果客户正在处理中,则将wait_time计数器减1
4、记录各种数据,如获得服务的客户数目、被拒绝的客户数目、排队等候的累积时间以及累积的队列长度等。
当模拟循环结束时,程序将报告各种统计结果

bool newCustomer( double x )
{
     return ( rand() * x / RAND_MAX < 1 );
}
其工作原理如下:值RAND_MAX是在cstdlib文件(以前是stdlib.h)中定义的,是rand()函数可能返回的最大值(0是最小值)。假设客户到达的平均间隔时间x为6,则rand()*x / RAND_MAX的值将

位于0到6之间。具体地说,平均每个6次,这个值会有一次小于1。不过,这个函数可能会导致客户到达的时间间隔有时为1分钟,有时为20分钟。这种方法虽然很笨拙,但可使实际情况不同于

有规则地没6分钟来一个客户。如果客户到达的平均时间间隔少于1分钟,则上述方法将无效,但模拟并不是针对这种情况设计的。如果确实需要处理这种情况,最好提高时间分辨率吗,比如

每次循环代表10秒钟。

  1. #include "stdafx.h"  
  2. #include "iostream"  
  3. using namespace std;  
  4.   
  5. class CCustomer  
  6. {  
  7. public:  
  8.     CCustomer()  
  9.     {  
  10.         m_nArrive = 0;  
  11.         m_nProcessTime = 0;  
  12.     }  
  13.     void set( long when )  
  14.     {  
  15.         m_nProcessTime = rand() % 3 + 1;  
  16.         m_nArrive = when;  
  17.     }  
  18.     inline long when() const  
  19.     {  
  20.         return m_nArrive;  
  21.     }  
  22.     inline long pTime() const  
  23.     {  
  24.         return m_nProcessTime;  
  25.     }  
  26. private:  
  27.     long m_nArrive;  
  28.     int m_nProcessTime;  
  29. };  
  30.   
  31. typedef CCustomer Item;  
  32.   
  33. class Queue  
  34. {  
  35. public:  
  36.     enum { Q_SIZE = 10 };  
  37.       
  38.     Queue( int qs ) : m_nQSize( qs )  
  39.     {  
  40.         front = rear = NULL;  
  41.         m_Items = 0;  
  42.     }  
  43.     ~Queue()  
  44.     {  
  45.         m_Items = 0;  
  46.         Node* temp;  
  47.         while ( NULL != front )  
  48.         {  
  49.             temp = front;  
  50.             front = front->next;  
  51.             delete temp;  
  52.         }  
  53.     }  
  54.   
  55.     int queueCount() const  
  56.     {  
  57.         return m_Items;  
  58.     }  
  59.     bool isEmpty() const  
  60.     {  
  61.         return ( 0 == m_Items );  
  62.     }  
  63.     bool isFull() const  
  64.     {  
  65.         return ( m_Items == m_nQSize );  
  66.     }  
  67.     bool dequeue( Item& item ) // 出队列  
  68.     {  
  69.         if ( NULL == front )  
  70.         {  
  71.             return false;  
  72.         }  
  73.         item = front->item;  
  74.         Node* temp;  
  75.         temp = front;  
  76.         front = front->next;  
  77.         delete temp;  
  78.         m_Items--;  
  79.         if ( 0 == m_Items )  
  80.         {  
  81.             rear = NULL;  
  82.         }  
  83.         return true;  
  84.     }  
  85.     bool enqueue( const Item& item ) // 入队列  
  86.     {  
  87.         if ( isFull() )  
  88.         {  
  89.             return false;  
  90.         }  
  91.         Node* add = new Node;  
  92.         if ( NULL == add )  
  93.         {  
  94.             return false;   
  95.         }  
  96.         add->item = item;  
  97.         add->next = NULL;  
  98.         if ( NULL == front )  
  99.         {  
  100.             front = add;  
  101.         }  
  102.         else  
  103.         {  
  104.             rear->next = add;  
  105.         }  
  106.         m_Items++;  
  107.         rear = add;  
  108.         return true;  
  109.     }  
  110.   
  111. private:  
  112.     struct Node   
  113.     {  
  114.         Item item;  
  115.         struct Node* next;  
  116.     };  
  117.     Node* front;  
  118.     Node* rear;  
  119.     int m_Items;  
  120.     const int m_nQSize;  
  121.     Queue( const Queue& rQueue ) : m_nQSize( 0 ) { };  
  122.     Queue& operator= ( const Queue& rQueue ) { };  
  123. };  
  124.   
  125. #include "cstdlib"  
  126. #include "ctime"  
  127. const int MIN_PER_HR = 60;  
  128.   
  129. bool newCustomer( double x )  
  130. {  
  131.     return ( rand() * x / RAND_MAX < 1 );  
  132. }  
  133.   
  134. int _tmain(int argc, _TCHAR* argv[])  
  135. {  
  136.     srand( time( 0 ) );  
  137.     cout << "Case Study Bank of Heather Automatic Teller" << endl;  
  138.     cout << "Enter maxnum size of queue" << endl;  
  139.     int qs;  
  140.     cin >> qs;  
  141.     Queue line( qs );   // 分配一个当前队列  
  142.   
  143.     cout << "Enter the number of simulation hours:"// 模拟时间  
  144.     int hours;  
  145.     cin >> hours;  
  146.       
  147.     long cyclelimit = MIN_PER_HR * hours;  
  148.     cout << "Enter the average number of customers per hour:"// 每小时  
  149.     double perhour;  
  150.     cin >> perhour;  
  151.     double min_per_cust;  
  152.     min_per_cust = MIN_PER_HR;  
  153.   
  154.     Item temp;  
  155.     long turnaways = 0;  
  156.     long customers = 0;  
  157.     long served = 0;  
  158.     long sum_line = 0;  
  159.     int wait_time = 0;  
  160.     long line_wait = 0;  
  161.   
  162.     for ( int cycle = 0; cycle < cyclelimit; cycle++ )  
  163.     {  
  164.         if ( newCustomer( min_per_cust ) )  
  165.         {  
  166.             if ( line.isFull() )  
  167.             {  
  168.                 turnaways++;  
  169.             }  
  170.             else  
  171.             {  
  172.                 customers++;  
  173.                 temp.set( cycle );  
  174.                 line.enqueue( temp );  
  175.             }  
  176.         }  
  177.         if ( wait_time <= 0 && !line.isEmpty() )  
  178.         {  
  179.             line.dequeue( temp );  
  180.             wait_time = temp.pTime();  
  181.             line_wait += cycle - temp.when();  
  182.             served++;  
  183.         }  
  184.         if ( wait_time > 0 )  
  185.         {  
  186.             wait_time--;  
  187.         }  
  188.         sum_line += line.queueCount();  
  189.     }  
  190.   
  191.     //report result  
  192.     if ( customers > 0 )  
  193.     {  
  194.         cout << "customers accepted:" << customers << endl;  
  195.         cout << "customers served:" << served << endl;  
  196.         cout << "   turnaways:" << turnaways << endl;  
  197.         cout << "average queue size:";  
  198.         cout.precision( 2 );  
  199.         cout.setf( ios_base::fixed, ios_base::floatfield );  
  200.         cout.setf( ios_base::showpoint );  
  201.         cout << ( double )sum_line / cyclelimit << endl;  
  202.         cout << " average wait_time:" << ( double )line_wait / served << " minutes" << endl;  
  203.     }  
  204.     else  
  205.     {  
  206.         cout << "no customers!" << endl;  
  207.     }  
  208.     cout << "Done!" << endl;  
  209.   
  210.     return 0;  
  211. }  


继承-----is-a关系
    派生类和基类之间的特殊关系是基于C++继承的底层模型的。实际上,C++有3中继承方法:共有继承、保护继承和私有继承。公有继承是最常用的方式,它建立一种is-a关系,即派生类对

象也是一个基类对象,可以对基类对象执行的任何操作,也可以对派生类对象执行。
    公有继承不能建立is-like-a关系,也就是说,它不采用明喻。人们通常说律师就像鲨鱼,但律师并不是鲨鱼。例如,鲨鱼可以在水下生活。所以,不应从Shark类派生出Lawyer类。继承

可以在基类的基础是哪个添加属性,但不能删除基类的属性。在一些情况下,可以设计一个包含公有特征的类,然后以is-a或has-a关系,使用这个类来定义相关的类。
    公有继承不简历is-implemented-as-a(作为……来实现)关系。例如,可以使用数组来实现堆栈,但从Array类派生出Stack类是不合适额,因为堆栈不是数组。例如,数组所以不是堆栈的

属性。另外,可以以其他方式实现堆栈,如使用链表。正确的方法是:通过让堆栈含一个私有的Array对象成员,来隐藏数组实现。
    公有继承不简历uses-a关系。例如,计算机可以使用激光打印机,但是从Computer类派生出Printer类(或反过来)是没有意义的。不过,可以使用友元函数或类来处理Printer对象和

Computer对象之间的通信。
    在C++语言中,完全可以使用公有继承来建立has-a、is-implemented-as-a或uses-a关系,不过,这样做通常或导致编程方面的问题。因此,还是坚持使用is-a关系吧。

多态公有继承的一个例子:

  1. #include "stdafx.h"  
  2. #include "string"  
  3. #include "iostream"  
  4. using namespace std;  
  5.   
  6. class Brass  
  7. {  
  8. public:  
  9.     Brass( const char* s = "Nullbody"long an = -1, double a = 0.0 )  
  10.     {  
  11.         m_szCustomerName = new char[ strlen( s ) + 1 ];  
  12.         memcpy( m_szCustomerName, s, strlen( s ) + 1 );  
  13.         m_szNumber = an;  
  14.         m_fBalance = a;  
  15.     }  
  16.     virtual ~Brass()  
  17.     {  
  18.         if ( m_szCustomerName )  
  19.         {  
  20.             delete[] m_szCustomerName;  
  21.             m_szCustomerName = NULL;  
  22.         }  
  23.     }  
  24.     virtual void deposit( double amt )  // 存款  
  25.     {  
  26.         m_fBalance += amt;  
  27.     }  
  28.     virtual void teller( double amt )               // 取款  
  29.     {  
  30.         if ( m_fBalance - amt >= 0 )  
  31.         {  
  32.             m_fBalance -= amt;  
  33.         }  
  34.     }  
  35.     virtual void showAccountInfo() const        // 显示账号信息  
  36.     {  
  37.         ios_base::fmtflags initialState = cout.setf( ios_base::fixed, ios_base::floatfield );  
  38.         cout.setf( ios_base::showpoint );  
  39.         cout.precision( 2 );  
  40.         cout << "CustomerName is:" << m_szCustomerName << endl;  
  41.         cout << "Number is:" << m_szNumber << endl;  
  42.         cout << "Balance is:" << m_fBalance << endl;  
  43.         cout.setf( initialState );  
  44.     }  
  45.     inline double GetBalance() const  
  46.     {  
  47.         return m_fBalance;  
  48.     }  
  49.   
  50. private:  
  51.     char* m_szCustomerName;  
  52.     long m_szNumber;  
  53.     double m_fBalance;  // 当前结余  
  54. };  
  55.   
  56. class BrassPlus : public Brass  
  57. {  
  58. public:  
  59.     BrassPlus( const char* s = "Nullbody"long an = -1, double a = 0.0,  
  60.                double dOverdrawlimit = 500, double dOverdraft = 0.1, double dOverdraw = 0 )  
  61.         : Brass( s, an, a )  
  62.     {  
  63.         m_fOverdrawlimit = dOverdrawlimit;  
  64.         m_fOverdraft = dOverdraft;  
  65.         m_fOverdraw = dOverdraw;  
  66.     }  
  67.     BrassPlus( const Brass& rBrass,  
  68.         double dOverdrawlimit = 500, double dOverdraft = 0.1, double dOverdraw = 0 )  
  69.         : Brass( rBrass )  
  70.     {  
  71.         m_fOverdrawlimit = dOverdrawlimit;  
  72.         m_fOverdraft = dOverdraft;  
  73.         m_fOverdraw = dOverdraw;  
  74.     }  
  75.     virtual void teller( double amt )               // 取款  
  76.     {  
  77.         ios_base::fmtflags initialState = cout.setf( ios_base::fixed, ios_base::floatfield );  
  78.         cout.setf( ios_base::showpoint );  
  79.         cout.precision( 2 );  
  80.   
  81.         double bal = GetBalance();  
  82.         if ( amt < bal )  
  83.         {  
  84.             Brass::teller( amt );  
  85.         }  
  86.         else if ( amt < bal + m_fOverdrawlimit - m_fOverdraw )  
  87.         {  
  88.             double advance = amt - bal;  
  89.             m_fOverdraw += advance * ( 1.0 + m_fOverdraft );  
  90.             cout << "Bank advance:$" << advance << endl;  
  91.             cout << "Finance charge:$" << advance * m_fOverdraft << endl;  
  92.             deposit( advance );  
  93.             Brass::teller( amt );  
  94.         }  
  95.         else  
  96.         {  
  97.             cout << "Credit limit exceeded. Transaction cancelled" << endl;  
  98.         }  
  99.         cout.setf( initialState );  
  100.     }  
  101.     virtual void showAccountInfo() const        // 显示账号信息  
  102.     {  
  103.         ios_base::fmtflags initialState = cout.setf( ios_base::fixed, ios_base::floatfield );  
  104.         cout.setf( ios_base::showpoint );  
  105.         cout.precision( 2 );  
  106.         Brass::showAccountInfo();  
  107.   
  108.         cout << "m_fOverdrawlimit is:" << m_fOverdrawlimit << endl;  
  109.         cout << "m_fOverdraft is:" << m_fOverdraft << endl;  
  110.         cout << "m_fOverdraw is:" << m_fOverdraw << endl;  
  111.         cout.setf( initialState );  
  112.     }  
  113.     inline int setOverdrawlimit( double dOverdrawlimit )  
  114.     {  
  115.         m_fOverdrawlimit = dOverdrawlimit;  
  116.     }  
  117.     inline int setOverdraft( int iOverdraft )  
  118.     {  
  119.         m_fOverdraft = iOverdraft;  
  120.     }  
  121.     inline int setOverdraw()  
  122.     {  
  123.         m_fOverdraw = 0;  
  124.     }  
  125. private:  
  126.     double m_fOverdrawlimit;        // 透支上限  
  127.     double m_fOverdraft;        // 贷款利率  
  128.     double m_fOverdraw;         // 当前的透支金额  
  129. };  
  130.   
  131. int _tmain(int argc, _TCHAR* argv[])  
  132. {  
  133.     Brass Piggy( "porcelot Pigg", 381299, 4000.00 );  
  134.     BrassPlus Hoggy( "Horatio Hogg", 382288, 3000.00 );  
  135.     Piggy.showAccountInfo();  
  136.     cout << "\n";  
  137.   
  138.     Hoggy.showAccountInfo();  
  139.     cout << "\n";  
  140.   
  141.     cout << "Depositing $1000 into the Hogg Account:" << endl;  
  142.     Hoggy.deposit( 1000.00 );  
  143.     cout << "\n";  
  144.   
  145.   
  146.     cout << "New balance:$" << Hoggy.GetBalance() << endl;  
  147.     cout << "WithDrawing $4200 from the Piggy Account:" << endl;  
  148.     Piggy.teller( 4200.00 );  
  149.     cout << "Pigg account balance:$" << Piggy.GetBalance() << endl;  
  150.     cout << "\n";  
  151.   
  152.   
  153.     cout << "teller $4200 from the Hoggy Account:" << endl;  
  154.     Hoggy.teller( 4200.00 );  
  155.     cout << "\n";  
  156.   
  157.     Hoggy.showAccountInfo();  
  158.       
  159.   
  160.     return 0;  
  161. }  

 

访问控制protected
    关键字protected与private相似,在类外只能用公有类成员来访问protected部分中的类成员。protected和private之间的区别只有在基类派生的类中才会表现出来。派生类的成员可以直

接访问基类的保护成员,但不能直接访问基类的私有成员。因此对于外部世界来说,保护成员的行为与私有成员相似;但对于派生类来说,保护成员的行为与公有成员相似。


单例设计模式

  1. #include "stdafx.h"  
  2. #include "iostream"  
  3. using namespace std;  
  4.   
  5. class CTheSingle  
  6. {  
  7. public:  
  8.     static CTheSingle* GetTheOnlyInstance()  
  9.     {  
  10.         static CTheSingle objCTheSingle;  
  11.         return &objCTheSingle;  
  12.     }  
  13. protected:  
  14.     CTheSingle(){}  
  15.     ~CTheSingle(){}  
  16. private:  
  17.     int m_nNumber;  
  18. };  
  19.   
  20. int _tmain(int argc, _TCHAR* argv[])  
  21. {  
  22.     CTheSingle* CTest = CTheSingle::GetTheOnlyInstance();  
  23.   
  24.     return 0;  
  25. }  

GetTheOnlyInstance()方法尽在第一次被调用时,创建CTheSingle类的一个实例。以这种方式构造的静态对象一直有效,直到程序终止,此时这种静态对象将自动释放。要检索指向这个类的

唯一一个实例的指针,只需要调用静态方法GetTheOnlyInstance(),该方法返回单对象的地址。
因为静态变量在函数调用结束后仍保存在内存中,所以以后在调用GetTheOnlyInstance()时,将返回同一个静态对象的地址。

 

抽象基类(abstract base class,ABC)
    有时候,使用is-a规则并不像看上去的那样简单。例如,假设正在开发一个图形程序,该程序会显示圆和椭圆等。圆是椭圆的一个特殊情况----长轴和短轴等长的椭圆。因此,所有的圆

都是椭圆,可以从Ellipse类排成出Circle类。但涉及到细节时,将发现许多问题。
    首先考虑Ellipse类包含的内容。数据成员可以报考椭圆中心的坐标、长半轴、短半轴以及方向角(水平坐标轴与长轴之间的角度)。另外,还可以包括一些移动椭圆、返回椭圆面积、旋转

椭圆以及缩放长半轴和短半轴的方法,但是Circle类从Ellipse类派生出来并不合适,因为很多数据成员根本不需要。
    一种解决办法,即从Ellipse类和Circle类中抽象出他们的共性,将这些特性放到一个ABC类中。然后从该ABC派生出Circle类和Ellipse类。这样,便可以使用基类指针数组同时管理

Ellipse对象和Circle对象,即可以使用多台方法。在这里,这两个类的共同点是中心坐标、move()、area()。确实,甚至不能在ABC中实现area(),因为他没有包含必要的数据成员。C++通过

使用纯虚函数(pure virtual function)提供为实现的函数。

应用ABC概念
    一个应用ABC的范例,因此这里将这一概念用于Brass和BrassPlus账户,首先定义一个名为AcctABC的ABC。这个类包含Brass和BrassPlus类共有的所有方法和数据成员,而哪些在Brass和

BrassPlus类中的行为不同的方法应呗声明为寻函数。至少应有一个虚函数是纯虚函数,这一才能使AcctABC成为抽象类

  1. #include "stdafx.h"  
  2. #include "string"  
  3. #include "iostream"  
  4. using namespace std;  
  5.   
  6. class IAcctABC  
  7. {  
  8. public:  
  9.     IAcctABC( const char* s = "Nullbody"long an = -1, double a = 0.0 )  
  10.     {  
  11.         m_szCustomerName = new char[ strlen( s ) + 1 ];  
  12.         memcpy( m_szCustomerName, s, strlen( s ) + 1 );  
  13.         m_szNumber = an;  
  14.         m_fBalance = a;  
  15.     }  
  16.     virtual ~IAcctABC()  
  17.     {  
  18.         if ( m_szCustomerName )  
  19.         {  
  20.             delete[] m_szCustomerName;  
  21.             m_szCustomerName = NULL;  
  22.         }  
  23.         cout << "AAAAAAAAAAAAAAAAAA" << endl;  
  24.     }  
  25.     void deposit( double amt )  // 存款  
  26.     {  
  27.         m_fBalance += amt;  
  28.     }  
  29.     inline char* GetCustomerName() const  
  30.     {  
  31.         if ( m_szCustomerName )  
  32.         {  
  33.             return m_szCustomerName;  
  34.         }  
  35.         return "";  
  36.     }  
  37.     inline long GetNumber() const  
  38.     {  
  39.         return m_szNumber;  
  40.     }  
  41.     inline double GetBalance() const  
  42.     {  
  43.         return m_fBalance;  
  44.     }  
  45.     ios_base::fmtflags SetFormat() const  
  46.     {  
  47.         ios_base::fmtflags initialState = cout.setf( ios_base::fixed, ios_base::floatfield );  
  48.         cout.setf( ios_base::showpoint );  
  49.         cout.precision( 2 );  
  50.         return initialState;  
  51.     }  
  52.     virtual void teller( double amt ) = 0;  
  53.     virtual void showAccountInfo() const = 0;  
  54. private:  
  55.     char* m_szCustomerName;  
  56.     long m_szNumber;  
  57.     double m_fBalance;  // 当前结余  
  58. };  
  59.   
  60. void IAcctABC::teller( double amt )  
  61. {  
  62.     m_fBalance -= amt;  
  63. }  
  64.   
  65. class Brass : public IAcctABC  
  66. {  
  67. public:  
  68.     Brass( const char* s, long an, double a )  
  69.         : IAcctABC( s, an, a )  
  70.     {  
  71.     }  
  72.     ~Brass()  
  73.     {  
  74.         cout << "BBBBBBBBBBBBBBBB" << endl;  
  75.     }  
  76.     virtual void teller( double amt )               // 取款  
  77.     {  
  78.         if ( IAcctABC::GetBalance() - amt >= 0 )  
  79.         {  
  80.             IAcctABC::teller( amt );  
  81.         }  
  82.     }  
  83.     virtual void showAccountInfo() const        // 显示账号信息  
  84.     {  
  85.         ios_base::fmtflags initialState = SetFormat();  
  86.         cout << "CustomerName is:" << IAcctABC::GetCustomerName() << endl;  
  87.         cout << "Number is:" << IAcctABC::GetNumber() << endl;  
  88.         cout << "Balance is:" << IAcctABC::GetBalance() << endl;  
  89.         cout.setf( initialState );  
  90.     }  
  91. };  
  92.   
  93. class BrassPlus : public IAcctABC  
  94. {  
  95. public:  
  96.     BrassPlus( const char* s = "Nullbody"long an = -1, double a = 0.0,  
  97.         double dOverdrawlimit = 500, double dOverdraft = 0.1, double dOverdraw = 0 )  
  98.         : IAcctABC( s, an, a )  
  99.     {  
  100.         m_fOverdrawlimit = dOverdrawlimit;  
  101.         m_fOverdraft = dOverdraft;  
  102.         m_fOverdraw = dOverdraw;  
  103.     }  
  104.     BrassPlus( const IAcctABC& rIAcctABC,  
  105.         double dOverdrawlimit = 500, double dOverdraft = 0.1, double dOverdraw = 0 )  
  106.         : IAcctABC( rIAcctABC )  
  107.     {  
  108.         m_fOverdrawlimit = dOverdrawlimit;  
  109.         m_fOverdraft = dOverdraft;  
  110.         m_fOverdraw = dOverdraw;  
  111.     }  
  112.     virtual void teller( double amt )               // 取款  
  113.     {  
  114.         ios_base::fmtflags initialState = cout.setf( ios_base::fixed, ios_base::floatfield );  
  115.         cout.setf( ios_base::showpoint );  
  116.         cout.precision( 2 );  
  117.   
  118.         double bal = GetBalance();  
  119.         if ( amt < bal )  
  120.         {  
  121.             IAcctABC::teller( amt );  
  122.         }  
  123.         else if ( amt < bal + m_fOverdrawlimit - m_fOverdraw )  
  124.         {  
  125.             double advance = amt - bal;  
  126.             m_fOverdraw += advance * ( 1.0 + m_fOverdraft );  
  127.             cout << "Bank advance:$" << advance << endl;  
  128.             cout << "Finance charge:$" << advance * m_fOverdraft << endl;  
  129.             deposit( advance );  
  130.             IAcctABC::teller( amt );  
  131.         }  
  132.         else  
  133.         {  
  134.             cout << "Credit limit exceeded. Transaction cancelled" << endl;  
  135.         }  
  136.         cout.setf( initialState );  
  137.     }  
  138.     virtual void showAccountInfo() const        // 显示账号信息  
  139.     {  
  140.         ios_base::fmtflags initialState = SetFormat();  
  141.         cout << "CustomerName is:" << IAcctABC::GetCustomerName() << endl;  
  142.         cout << "Number is:" << IAcctABC::GetNumber() << endl;  
  143.         cout << "Balance is:" << IAcctABC::GetBalance() << endl;  
  144.         cout << "m_fOverdrawlimit is:" << m_fOverdrawlimit << endl;  
  145.         cout << "m_fOverdraft is:" << m_fOverdraft << endl;  
  146.         cout << "m_fOverdraw is:" << m_fOverdraw << endl;  
  147.         cout.setf( initialState );  
  148.     }  
  149.   
  150.     inline int setOverdrawlimit( double dOverdrawlimit )  
  151.     {  
  152.         m_fOverdrawlimit = dOverdrawlimit;  
  153.     }  
  154.     inline int setOverdraft( int iOverdraft )  
  155.     {  
  156.         m_fOverdraft = iOverdraft;  
  157.     }  
  158.     inline int setOverdraw()  
  159.     {  
  160.         m_fOverdraw = 0;  
  161.     }  
  162. private:  
  163.     double m_fOverdrawlimit;        // 透支上限  
  164.     double m_fOverdraft;        // 贷款利率  
  165.     double m_fOverdraw;         // 当前的透支金额  
  166. };  
  167.   
  168. int _tmain(int argc, _TCHAR* argv[])  
  169. {  
  170.     Brass Piggy( "porcelot Pigg", 381299, 4000.00 );  
  171.     BrassPlus Hoggy( "Horatio Hogg", 382288, 3000.00 );  
  172.     Piggy.showAccountInfo();  
  173.     cout << "\n";  
  174.   
  175.     Hoggy.showAccountInfo();  
  176.     cout << "\n";  
  177.   
  178.     cout << "Depositing $1000 into the Hogg Account:" << endl;  
  179.     Hoggy.deposit( 1000.00 );  
  180.     cout << "\n";  
  181.   
  182.   
  183.     cout << "New balance:$" << Hoggy.GetBalance() << endl;  
  184.     cout << "WithDrawing $4200 from the Piggy Account:" << endl;  
  185.     Piggy.teller( 4200.00 );  
  186.     cout << "Pigg account balance:$" << Piggy.GetBalance() << endl;  
  187.     cout << "\n";  
  188.   
  189.   
  190.     cout << "teller $4200 from the Hoggy Account:" << endl;  
  191.     Hoggy.teller( 4200.00 );  
  192.     cout << "\n";  
  193.   
  194.     Hoggy.showAccountInfo();  
  195.   
  196.   
  197.     return 0;  
  198. }  

在设计ABC之前,首先应开发一个模型----指出编程问题所需的类以及它们之间的相互关系。一种学院派思想认为,如果要设计类继承层次,则只能将那些不会被用作基类的类设计为具体的类。这种方法的设计更清晰,复杂程度更低。


实际应用注意事项:使用ABC实施接口规则
    可以将ABC看做是一种必须实施的接口。ABC要求具体派生类覆盖其纯虚函数----迫使派生类遵循ABC所设置的接口规则。这种模型在基于组件的编程模式中很常见,在这种情况下,,使用

ABC使得组件设计人员能够制定“接口规定”,这样确保了从ABC派生的所有组件都至少支持ABC制定的功能。


友元函数
    由于友元函数并非类成员,因此不能继承。然而,可能希望派生类的友元函数能够使用基类的友元函数。为此,可以通过强制类型转换将派生类引用或指针转换为基类引用或指针,然后

使用转换后的指针或引用来调用基类的友元函数:

  1. ostream& operator << ( ostream& os, const hasDMC& hs )  
  2. {  
  3.     os << ( const baseDMA& )hs;  
  4.     os << "Style:" << hs.style << endl;  
  5.     return os;  
  6. }  

当然也可以使用dynamic_case<>来进行强制类型转换


子类中同时需要new的情况:

  1. #include "stdafx.h"  
  2. #include "string"  
  3. #include "iostream"  
  4. using namespace std;  
  5.   
  6. class CTest_A  
  7. {  
  8. public:  
  9.     CTest_A( const char* Name )  
  10.     {  
  11.         m_szName = new char[ strlen( Name ) + 1 ];  
  12.         strcpy( m_szName, Name );  
  13.     }  
  14.     CTest_A( const CTest_A& rCTest_A )  
  15.     {  
  16.         m_szName = new char[ strlen( rCTest_A.m_szName ) + 1 ];  
  17.         strcpy( m_szName, rCTest_A.m_szName );  
  18.     }  
  19.     /* 
  20.     CTest_A& operator= ( const CTest_A& rCTest_A ) 
  21.         { 
  22.             if( this == &rCTest_A ) 
  23.             { 
  24.                 return *this; 
  25.             } 
  26.             delete[] m_szName; 
  27.             m_szName = new char[ strlen( rCTest_A.m_szName ) + 1 ]; 
  28.             strcpy( m_szName, rCTest_A.m_szName ); 
  29.             return *this; 
  30.         }*/  
  31.     ~CTest_A()  
  32.     {  
  33.         if ( m_szName )  
  34.         {  
  35.             delete[] m_szName;  
  36.         }  
  37.     }  
  38.     void showName() const  
  39.     {  
  40.         cout << "this Name is:" << m_szName << endl;  
  41.     }  
  42. private:  
  43.     char* m_szName;  
  44. };  
  45.   
  46. class CTest_B : public CTest_A  
  47. {  
  48. public:  
  49.     CTest_B( const char* Number, const char* Name )  
  50.         : CTest_A( Name )  
  51.     {  
  52.         m_szNumber = new char[ strlen( Number ) + 1 ];  
  53.         strcpy( m_szNumber, Number );  
  54.     }  
  55.     CTest_B( const CTest_B& rCTest_B )  
  56.         : CTest_A( rCTest_B )  
  57.     {  
  58.         m_szNumber = new char[ strlen( rCTest_B.m_szNumber ) + 1 ];  
  59.         strcpy( m_szNumber, rCTest_B.m_szNumber );  
  60.     }  
  61. /* 
  62.     CTest_B& operator= ( const CTest_B& rCTest_B ) 
  63.     { 
  64.         if( this == &rCTest_B ) 
  65.         { 
  66.             return *this; 
  67.         } 
  68.         delete[] m_szNumber; 
  69.         m_szNumber = new char[ strlen( rCTest_B.m_szNumber ) + 1 ]; 
  70.         strcpy( m_szNumber, rCTest_B.m_szNumber ); 
  71.         CTest_A::operator =( rCTest_B ); 
  72.         return *this; 
  73.     }*/  
  74.     ~CTest_B()  
  75.     {  
  76.         if ( m_szNumber )  
  77.         {  
  78.             delete[] m_szNumber;  
  79.         }  
  80.     }  
  81.     void showNumber() const  
  82.     {  
  83.         cout << "this Number is:" << m_szNumber << endl;  
  84.     }  
  85. private:  
  86.     char* m_szNumber;  
  87. };  
  88.   
  89. int _tmain(int argc, _TCHAR* argv[])  
  90. {  
  91.     CTest_B* test = new CTest_B( "386644""zeng" );  
  92.     test->showNumber();  
  93.     test->showName();  
  94.     cout << "\n";  
  95.   
  96.     CTest_B test2( "386677""zeng2" );  
  97.     test2.showNumber();  
  98.     test2.showName();  
  99.     cout << "\n";  
  100.   
  101.     CTest_B test3( test2 );  
  102.     test3.showNumber();  
  103.     test3.showName();  
  104.     cout << "\n";  
  105.   
  106.     CTest_B test4 = test3;  
  107.     test4.showNumber();  
  108.     test4.showName();  
  109.     cout << "\n";  
  110.   
  111.     CTest_B test5( test4 );  
  112.     test5 = *test;  
  113.     delete test;  
  114.     test5.showNumber();  
  115.     test5.showName();  
  116.     cout << "\n";  
  117.   
  118.     return 0;  
  119. }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值