创建异常类的成员函数

 #include <iostream>
using namespace std;
const int num=5;
class people
{
  public:
   people(int size=num);
   ~people(){delete[]p;}
   int&operator[](int off);
   const int&operator[](int off)const;
   int GetSize()const{return size;}
   class wrong{};
   class offset
    {
     public:
       offset(int Size):size(Size){}
       ~offset(){}
       int Get(){return size;}
     private:
       int size;
    };
  class Big:public offset
  {
    public:
      Big(int Size):offset(Size){}
  };
  class Nav:public offset
  {
    public:
      Nav(int Size):offset(Size){}
  };
  class Small
  {
    public:
      Small(int Size):size(Size){}
      ~Small(){}
      int get(){return size;}
    private:
      int size;
  };
  class Zero:public Small
  {
    public:
      Zero(int Size):Small(Size){}
  };
  private:
  int *p;
  int size;
};
people::people(int Size):size(Size)
{
  cout<<"调用构造函数\n";
  if (Size==0)
  {
    throw Zero(Size);
  }
  if (Size<10)
  {
    throw Small(Size);
  }
  if (Size>10000)
  {
    throw Big(Size);
  }
  if (Size<1)
  {
    throw Nav(Size);
  }
  p=new int[size];
  for (int i=0;i<size;i++)
  {
    p[i]=0;
  }
}
int&people::operator[](int off)
{
  int size=GetSize();
  if (off>=0&&off<GetSize())
  {
    return p[off];
  }
  throw wrong();
  return p[0];
}
const int&people::operator[](int off)const
{
  int Size=GetSize();
  if (off>=0&&off<GetSize())
  {
    return p[off];
  }
  throw wrong();
  return p[0];
}
int main()
{
  try
  {
   people one(9);
   for (int i=0;i<100;i++)
    {
     one[i]=i;
     cout<<"one["<<i<<"]赋值完毕..."<<endl;
    }
  }
  catch (people::wrong)
  {
     cout<<"超过数组长度,不能继续执行赋值操作!\n";
  }
  catch (people::Big big)
  {
    cout<<"下标值太大\n";
  }
  catch (people::Small small)
  {
    cout<<"下标值太小\n";
    cout<<"下标值为:"<<small.get()<<endl;
  }
  catch (people::Zero zero)
  {
   cout<<"下标值为0\n";
  }
  catch (people::Nav nav)
  {
   cout<<"下标值为负数\n";
  }
  catch (people::offset)
  {
    cout<<"下标值过大或为负数\n";
  }
  cout<<"程序结束\b\n";
  return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值