共用方式為


logic_error 類別

此類別可做為擲回之所有例外狀況的基底類別,這些例外狀況報告在程式執行前假定可偵測的錯誤,例如邏輯前置條件的違規。

語法

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

    explicit logic_error(const char *message);

};

備註

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

範例

// logic_error.cpp
// compile with: /EHsc
#include <exception>
#include <iostream>
#include <stdexcept>
#include <typeinfo>
using namespace std;

int main()
{
   try
   {
      throw logic_error("Does not compute!");
   }
   catch (const exception& e)
   {
      cerr << "Caught: " << e.what() << endl;
      cerr << "Type: " << typeid(e).name() << endl;
   }
}
/* Output:
Caught: Does not compute!
Type: class std::logic_error
*/

需求

Header:<stdexcept>

命名空間:std

另請參閱

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