length_error クラス
このクラスは、生成を試みたオブジェクトが長すぎて指定できないことを通知するためにスローされる例外すべてに対する基底クラスとして機能します。
構文
class length_error : public logic_error {
public:
explicit length_error(const string& message);
explicit length_error(const char *message);
};
解説
what()
によって返される値は message.data()
のコピーです。 詳細については、次のトピックを参照してください。 what
および data
例
// 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
*/
要件
ヘッダー: <stdexcept>
名前空間: std