Array1.cpp
上传用户:okapple
上传日期:2021-05-13
资源大小:3k
文件大小:4k
源码类别:

压缩解压

开发平台:

C/C++

  1. // Fig 8.4: array1.cpp
  2. // Member function definitions for class Array
  3. #include <iostream.h>
  4. #include <iomanip.h>
  5. #include <stdlib.h>
  6. #include <assert.h>
  7. #include "array1.h"
  8. // Initialize static data member at file scope
  9. int Array::arrayCount = 0;   // no objects yet
  10. // Default constructor for class Array (default size 10)
  11. Array::Array( int arraySize )
  12. {
  13.    size = ( arraySize > 0 ? arraySize : 10 ); 
  14.    ptr = new int[ size ]; // create space for array
  15.    assert( ptr != 0 );    // terminate if memory not allocated
  16.    ++arrayCount;          // count one more object
  17.    for ( int i = 0; i < size; i++ )
  18.       ptr[ i ] = 0;          // initialize array
  19. }
  20. // Copy constructor for class Array
  21. // must receive a reference to prevent infinite recursion
  22. Array::Array( const Array &init ) : size( init.size )
  23. {
  24.    ptr = new int[ size ]; // create space for array
  25.    assert( ptr != 0 );    // terminate if memory not allocated
  26.    ++arrayCount;          // count one more object
  27.    for ( int i = 0; i < size; i++ )
  28.       ptr[ i ] = init.ptr[ i ];  // copy init into object
  29. }
  30. // Destructor for class Array
  31. Array::~Array()
  32. {
  33.    delete [] ptr;            // reclaim space for array
  34.    --arrayCount;             // one fewer objects
  35. }
  36. // Get the size of the array
  37. int Array::getSize() const { return size; }
  38. // Overloaded assignment operator
  39. // const return avoids: ( a1 = a2 ) = a3
  40. const Array &Array::operator=( const Array &right )
  41. {
  42.    if ( &right != this ) {  // check for self-assignment
  43.       
  44.       // for arrays of different sizes, deallocate original
  45.       // left side array, then allocate new left side array.
  46.       if ( size != right.size ) {
  47.          delete [] ptr;         // reclaim space
  48.          size = right.size;     // resize this object
  49.          ptr = new int[ size ]; // create space for array copy
  50.          assert( ptr != 0 );    // terminate if not allocated
  51.       }
  52.       for ( int i = 0; i < size; i++ )
  53.          ptr[ i ] = right.ptr[ i ];  // copy array into object
  54.    }
  55.    return *this;   // enables x = y = z;
  56. }
  57. // Determine if two arrays are equal and
  58. // return true, otherwise return false.
  59. bool Array::operator==( const Array &right ) const
  60. {
  61.    if ( size != right.size )
  62.       return false;    // arrays of different sizes
  63.    for ( int i = 0; i < size; i++ )
  64.       if ( ptr[ i ] != right.ptr[ i ] )
  65.          return false; // arrays are not equal
  66.    return true;        // arrays are equal
  67. }
  68. // Overloaded subscript operator for non-const Arrays
  69. // reference return creates an lvalue
  70. int &Array::operator[]( int subscript )
  71. {
  72.    // check for subscript out of range error
  73.    assert( 0 <= subscript && subscript < size );
  74.    return ptr[ subscript ]; // reference return
  75. }
  76. // Overloaded subscript operator for const Arrays
  77. // const reference return creates an rvalue
  78. const int &Array::operator[]( int subscript ) const
  79. {
  80.    // check for subscript out of range error
  81.    assert( 0 <= subscript && subscript < size );
  82.    return ptr[ subscript ]; // const reference return
  83. }
  84. // Return the number of Array objects instantiated
  85. // static functions cannot be const 
  86. int Array::getArrayCount() { return arrayCount; }
  87. // Overloaded input operator for class Array;
  88. // inputs values for entire array.
  89. istream &operator>>( istream &input, Array &a )
  90. {
  91.    for ( int i = 0; i < a.size; i++ )
  92.       input >> a.ptr[ i ];
  93.    return input;   // enables cin >> x >> y;
  94. }
  95. // Overloaded output operator for class Array 
  96. ostream &operator<<( ostream &output, const Array &a )
  97. {
  98.    int i;
  99.    for ( i = 0; i < a.size; i++ ) {
  100.       output << setw( 12 ) << a.ptr[ i ];
  101.       if ( ( i + 1 ) % 4 == 0 ) // 4 numbers per row of output
  102.          output << endl;
  103.    }
  104.    if ( i % 4 != 0 )
  105.       output << endl;
  106.    return output;   // enables cout << x << y;
  107. }