C++ Exception 库 - invalid_argument
描述
这是一个无效参数异常,标准库的某些组件也会抛出这种类型的异常来表示无效参数。
声明
以下是 std::invalid_argument 的声明。
class invalid_argument;
C++11
class invalid_argument;
参数
none
返回值
none
异常
No-throw guarantee − 没有成员抛出异常。
成员
constructor − what_arg 与成员 what 返回的值具有相同的内容。
what − 它用于获取字符串识别异常。
示例
在下面的例子中解释了 std::invalid_argument。
#include <iostream> #include <stdexcept> #include <bitset> #include <string> int main (void) { try { std::bitset<5> mybitset (std::string("9848011223")); } catch (const std::invalid_argument& ia) { std::cerr << "Invalid argument: " << ia.what() << '\n'; } return 0; }
让我们编译并运行上面的程序,这将产生以下结果 −
Invalid argument: bitset::_M_copy_from_ptr