<new>

std::bad_array_new_length

class bad_array_new_length;
数组长度错误的异常

在以下任何情况下,由数组 new 表达式抛出的异常的类型
  • 如果数组大小为负数。
  • 如果数组大小大于实现定义的限制。
  • 如果初始化列表中的元素数量超过要初始化的元素数量。

此类派生自 bad_allocexception 派生自 exception)。有关标准异常的成员定义,请参阅 exception 类。

其成员 what 返回一个标识异常的空终止字符序列

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// bad_array_new_length example
#include <iostream>     // std::cout
#include <exception>    // std::exception
#include <new>          // std::bad_array_new_length

int main() {
  try {
    int* p = new int[-1];
  } catch (std::bad_array_new_length& e) {
    std::cerr << "bad_array_new_length caught: " << e.what() << '\n';
  } catch (std::exception& e) {   // older compilers may throw other exceptions:
    std::cerr << "some other standard exception caught: " << e.what() << '\n';
  }
}

可能的输出

bad_array_new_length caught: bad array new length


异常安全

无异常保证:无成员抛出异常。

另见