Compartilhar via


Classe length_error

A classe serve como a classe base para todas as exceções geradas para relatar uma tentativa de gerar um objeto muito longo para ser especificado.

Sintaxe

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

    explicit length_error(const char *message);

};

Comentários

O valor retornado por what() é uma cópia de message.data(). Para obter mais informações, consulte what e data.

Exemplo

// length_error.cpp
// compile with: /EHsc
#include <cstddef>
#include <exception>
#include <iostream>
#include <typeinfo>
#include <vector>
using namespace std;

int main()
{
   try
   {
      vector<int> v(100 + static_cast<size_t>(-1) / sizeof(int));
   }
   catch (const exception& e)
   {
      cerr << "Caught: " << e.what() << endl;
      cerr << "Type: " << typeid(e).name() << endl;
   }
}
/* Output:
Caught: vector too long
Type: class std::length_error
*/

Requisitos

Cabeçalho:<stdexcept>

Namespace: std

Confira também

Classe logic_error
Acesso Thread-Safe na Biblioteca Padrão C++