C++ 参考手册

位置:首页 > C++ 参考手册 >动态内存管理 >低层内存管理 > std::bad_array_new_length

定义于头文件 <new>
class bad_array_new_length;
(C++11 起)

std::bad_array_new_lengthnew 表达式作为异常抛出以报告非法数组长度的对象类型,若

1) 数组长度为负

2) 新数组的总大小将超过实现定义最大值

3) 初始化器子句的数量超出要初始化的元素数量

仅数组第一维可生成此异常;第一维外的维数是常量表达式,在编译时得到检查。

cpp/error/exceptioncpp/memory/new/bad allocstd-bad array new length-inheritance.svg

继承图

成员函数

构造 bad_array_new_length 对象
(公开成员函数)

继承自 std::bad_alloc

继承自 std::exception

成员函数

析构该异常对象
(std::exception 的虚公开成员函数)
[虚]
返回解释性字符串
(std::exception 的虚公开成员函数)

注意

可提供但不要求虚成员函数 what() 的覆写。

示例

应抛出 std::bad_array_new_length 的三种条件:

#include <iostream>
#include <new>
#include <climits>
 
int main()
{
    int negative = -1;
    int small = 1;
    int large = INT_MAX;
    try {
        new int[negative];           // 负大小
        new int[small]{1,2,3};       // 过多初始化器
        new int[large][1000000];     // 过大
    } catch(const std::bad_array_new_length &e) {
        std::cout << e.what() << '\n';
    }
}


参阅

分配函数
(函数)
内存分配失败时抛出的异常
(类)