C++ Stdexcept 库 - invalid_argument


描述

它是一个无效参数异常,此类定义了作为异常抛出的对象类型以报告无效参数。

宣言

以下是 std::invalid_argument 的声明。

class invalid_argument;

C++11

class invalid_argument;

参数

没有任何

返回值

没有任何

会员

构造函数- 这里作为what_arg传递的字符串与成员what返回的值具有相同的内容。

例子

在下面的 std::invalid_argument 示例中。

#include <iostream>
#include <stdexcept>
#include <bitset>
#include <string>
int main (void) {
   try {
      std::bitset<5> mybitset (std::string("01203040"));
   } catch (const std::invalid_argument& ia) {
      std::cerr << "Invalid argument: " << ia.what() << '\n';
   }
   return 0;
}

输出应该是这样的 -

Invalid argument: bitset::_M_copy_from_ptr
标准例外.htm