⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 list2004.cpp

📁 teach yourself C++ in 21 days 第五版
💻 CPP
字号:
#include <iostream>
using namespace std;

const int DefaultSize = 10;

class Array
{
  public:
    // constructors
    Array(int itsSize = DefaultSize);
    Array(const Array &rhs);
    ~Array() { delete [] pType;}
 
    // operators
    Array& operator=(const Array&);
    int& operator[](int offSet);
    const int& operator[](int offSet) const;
 
    // accessors
    int GetitsSize() const { return itsSize; }

    // friend function
    friend ostream& operator<< (ostream&, const Array&);

    class xBoundary {};  // define the exception class

  private:
    int *pType;
    int  itsSize;
};

Array::Array(int size):
   itsSize(size)
{
   pType = new int[size];
   for (int i = 0; i < size; i++)
      pType[i] = 0;
}

Array& Array::operator=(const Array &rhs)
{
   if (this == &rhs)
      return *this;
   delete [] pType;
   itsSize = rhs.GetitsSize();
   pType = new int[itsSize];
   for (int i = 0; i < itsSize; i++)
   {
      pType[i] = rhs[i];
   }
   return *this;
}

Array::Array(const Array &rhs)
{
   itsSize = rhs.GetitsSize();
   pType = new int[itsSize];
   for (int i = 0; i < itsSize; i++)
   {
      pType[i] = rhs[i];
   }
}

int& Array::operator[](int offSet)
{
   int size = GetitsSize();
   if (offSet >= 0 && offSet < GetitsSize())
      return pType[offSet];
   throw xBoundary();
   return pType[0]; // appease MSC
}

const int& Array::operator[](int offSet) const
{
   int mysize = GetitsSize();
   if (offSet >= 0 && offSet < GetitsSize())
      return pType[offSet];
   throw xBoundary();
   return pType[0]; // appease MSC
}

ostream& operator<< (ostream& output, const Array& theArray)
{
   for (int i = 0; i<theArray.GetitsSize(); i++)
      output << "[" << i << "] " << theArray[i] << endl;
   return output;
}

int main()
{
   Array intArray(20);
   try
   {
      for (int j = 0; j< 100; j++)
      {
         intArray[j] = j;
         cout << "intArray[" << j << "] okay..." << endl;
      }
   }
   catch (Array::xBoundary)
  {
     cout << "Unable to process your input!" << endl;
  }
  cout << "Done." << endl;
  return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -