invalid_argument 类
类用作。所有引发的异常的基类。报告的参数无效。
class invalid_argument : public logic_error {
public:
explicit invalid_argument(const string& message);
explicit invalid_argument(const char *message);
};
备注
exception 类 返回的值为 message.数据副本。
示例
// 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;
};
}
要求
页眉:<stdexcept>
命名空间: std