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
stdexcept.htm
广告