共用方式為


length_error 類別

此類別可做為擲回之所有例外狀況的基底類別,這些例外狀況報告嘗試產生的物件太長而無法指定。

語法

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

    explicit length_error(const char *message);

};

備註

what() 回的值是 的 message.data()複本。 如需詳細資訊,請參閱 whatdata

範例

// 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
*/

需求

Header:<stdexcept>

命名空間:std

另請參閱

logic_error 類別
C++ 標準程式庫中的執行緒安全