invalid_argument Class

选件类用作对于所有引发异常的基类。报告无效参数。

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

备注

exception Class 返回的值是 消息.数据的副本。

示例

// invalid_arg.cpp
// compile with: /EHsc /GR
#include <bitset>
#include <iostream>

using namespace std;

int main( )
{
   try 
   {
      bitset< 32 > bitset( string( "11001010101100001b100101010110000") );
   }
   catch ( exception &e ) 
   {
      cerr << "Caught " << e.what( ) << endl;
      cerr << "Type " << typeid( e ).name( ) << endl;
   };
}
  

要求

Header: <stdexcept>

命名空间: std

请参见

参考

logic_error Class

线程安全性对标准C++库中