共用方式為


logic_error 類別

類別會針對所有例外狀況的基底類別報告資料假設可偵測的錯誤,程式執行,例如違規邏輯前置條件之前。

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

備註

exception 類別 傳回的值是 message.資料複本。

範例

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

int main( )
{
   try 
   {
      throw logic_error( "logic error" );
   }
   catch ( exception &e ) 
   {
      cerr << "Caught: " << e.what( ) << endl;
      cerr << "Type: " << typeid( e ).name( ) << endl;
   };
}

Output

Caught: logic error
Type: class std::logic_error

需求

Header: <stdexcept>

命名空間: std

請參閱

參考

exception 類別

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