다음을 통해 공유


length_error Class

클래스 보고 너무 길어서 지정할 개체를 생성 하려고 하는 throw 된 모든 예외에 대 한 기본 클래스 역할을 합니다.

class length_error : public logic_error {
public:
    explicit length_error(const string& message);
    explicit length_error(const char *message);
};

설명

반환 값 exception Class 의 복사본 인 메시지.데이터.

예제

// length_error.cpp
// compile with: /EHsc /GR /MDd
#include <vector>
#include <iostream>

using namespace std;

template<class _Ty>
class stingyallocator : public allocator<_Ty>
{
public:
   template <class U>
      struct rebind { typedef stingyallocator<U> other; };
   _SIZT max_size( ) const
   {
         return 10;
   };

};

int main( )
{
   try
   {
      vector<int, stingyallocator< int > > myv;
      for ( int i = 0; i < 11; i++ ) myv.push_back( i );
   }
   catch ( exception &e )
   {
      cerr << "Caught " << e.what( ) << endl;
      cerr << "Type " << typeid( e ).name( ) << endl;
   };
}
  

요구 사항

헤더: <stdexcept>

네임 스페이스: std

참고 항목

참조

logic_error Class

표준 C++ 라이브러리에서 스레드로부터의 안전성