Use custom exception in your own Array class : Custom Exception « Exceptions « C++ Tutorial

Home
C++ Tutorial
1.Language Basics
2.Data Types
3.Operators statements
4.Array
5.Development
6.Exceptions
7.Function
8.Structure
9.Class
10.Operator Overloading
11.Pointer
12.File Stream
13.template
14.STL Introduction
15.string
16.vector
17.list
18.bitset
19.set multiset
20.valarray
21.queue stack
22.deque
23.map multimap
24.STL Algorithms Modifying sequence operations
25.STL Algorithms Non modifying sequence operations
26.STL Algorithms Binary search
27.STL Algorithms Sorting
28.STL Algorithms Merge
29.STL Algorithms Min Max
30.STL Algorithms Iterator
31.STL Algorithms Heap
32.STL Algorithms Helper
C / ANSI-C
C Tutorial
C++
Visual C++ .NET
C++ Tutorial » Exceptions » Custom Exception 
6.5.4.Use custom exception in your own Array class
#include <iostream>
 
 const int DefaultSize = 10;
 
 // define the exception classes
 class ArrayIndexOutofBoundException {};
 
 class BaseArraySizeException
 {
 public:
     BaseArraySizeException(int size):itsSize(size) {}
     ~BaseArraySizeException(){}
     virtual int GetSize() { return itsSize; }
     virtual void PrintError() 
     std::cout << "Size error. Received: " 
         << itsSize << std::endl; }
 protected:
     int itsSize;
 };
 
 class ArraySizeTooBigException : public BaseArraySizeException
 {
 public:
     ArraySizeTooBigException(int size):BaseArraySizeException(size){}
     virtual void PrintError() 
     
         std::cout << "Too big! Received: ";
         std::cout << BaseArraySizeException::itsSize << std::endl;
     }
 };
 
 class ArraySizeTooSmallException : public BaseArraySizeException
 {
 public:
     ArraySizeTooSmallException(int size):BaseArraySizeException(size){}
     virtual void PrintError() 
     
         std::cout << "Too small! Received: ";
         std::cout << BaseArraySizeException::itsSize << std::endl;
     }
 };
 
 class ArraySizeZeroException  : public ArraySizeTooSmallException
 {
 public:
     ArraySizeZeroException(int size):ArraySizeTooSmallException(size){}
     virtual void PrintError() 
     
         std::cout << "Zero!!. Received: ";
         std::cout << BaseArraySizeException::itsSize << std::endl;
     }
 };
 
 class ArraySizeNegativeException : public BaseArraySizeException
 {
 public:
     ArraySizeNegativeException(int size):BaseArraySizeException(size){}
     virtual void PrintError() 
     
         std::cout << "Negative! Received: ";
         std::cout << BaseArraySizeException::itsSize << std::endl;
     }
 };
 
 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 offSetconst;
 
     // accessors
     int GetitsSize() const return itsSize; }
 
     // friend function
     friend std::ostream& operator<< (std::ostream&, const Array&);
 
 
 private:
     int *pType;
     int  itsSize;
 };
 
 Array::Array(int size):
 itsSize(size)
 {
     if (size == 0)
         throw ArraySizeZeroException(size);
 
     if (size < 0)
         throw ArraySizeNegativeException(size);
 
     if (size < 10)
         throw ArraySizeTooSmallException(size);
 
     if (size > 30000)
         throw ArraySizeTooBigException(size);
 
     pType = new int[size];
     for (int i = 0; i<size; i++)
         pType[i0;
 }
 
 int& Array::operator[] (int offset)
 {
     int size = GetitsSize();
     if (offset >= && offset < GetitsSize())
         return pType[offset];
     throw ArrayIndexOutofBoundException();
     return pType[offset];
 }
 
 const int& Array::operator[] (int offsetconst
 {
     int size = GetitsSize();
     if (offset >= && offset < GetitsSize())
         return pType[offset];
     throw ArrayIndexOutofBoundException();
     return pType[offset];
 }
 
 int main()
 {
     try
     {
         int choice;
         std::cout << "Enter the array size: ";
         std::cin >> choice;
         Array intArray(choice);
         for (int j = 0; j< 100; j++)
         {
             intArray[j= j;
             std::cout << "intArray[" << j << "] okay..." 
                 << std::endl;
         }
     }
     catch (ArrayIndexOutofBoundException)
     {
         std::cout << "Unable to process your input!\n";
     }
     catch (BaseArraySizeException& theException)
     {
         theException.PrintError();
     }
     catch (...)
     {
         std::cout << "Something went wrong,"
             << "but I've no idea what!" << std::endl;
     }
     std::cout << "Done.\n";
     return 0;
 }
Enter the array size: 12
intArray[0] okay...
intArray[1] okay...
intArray[2] okay...
intArray[3] okay...
intArray[4] okay...
intArray[5] okay...
intArray[6] okay...
intArray[7] okay...
intArray[8] okay...
intArray[9] okay...
intArray[10] okay...
intArray[11] okay...
Unable to process your input!
Done.
6.5.Custom Exception
6.5.1.Throw your own exception class based on runtime_error
6.5.2.Custom exception class
6.5.3.Throw a custom exception object
6.5.4.Use custom exception in your own Array class
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.