C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- std::unique_ptr
- std::scoped_allocator_adaptor
- std::auto_ptr
- std::destroy_at
- std::destroy
- std::destroy_n
- std::uninitialized_move
- std::uninitialized_value_construct
- std::owner_less
- std::shared_ptr
- std::to_address
- std::assume_aligned
- std::make_obj_using_allocator
- C 内存管理库
- 低层内存管理
- operator delete, operator delete[]
- std::align_val_t
- std::bad_alloc
- std::bad_array_new_length
- operator new, operator new[]
- std::addressof
- std::allocator_traits
- std::default_delete
- std::allocator_arg_t
- std::allocator_arg
- std::weak_ptr
- std::enable_shared_from_this
- std::bad_weak_ptr
- std::pmr::memory_resource
- std::allocator
- std::pointer_traits
- std::uses_allocator
- std::uses_allocator_construction_args
- std::uninitialized_construct_using_allocator
- std::pmr::polymorphic_allocator
- std::pmr::get_default_resource
- std::pmr::set_default_resource
- std::pmr::new_delete_resource
- std::pmr::null_memory_resource
- std::pmr::synchronized_pool_resource
- std::pmr::unsynchronized_pool_resource
- std::pmr::monotonic_buffer_resource
- std::pmr::pool_options
- std::raw_storage_iterator
- std::get_temporary_buffer
- std::return_temporary_buffer
- std::uninitialized_copy
- std::uninitialized_fill
- std::uninitialized_default_construct
- std::uninitialized_copy_n
- std::uninitialized_fill_n
- std::uninitialized_move_n
- std::uninitialized_default_construct_n
- std::uninitialized_value_construct_n
- std::construct_at
- std::align
- 注释
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::bad_alloc
定义于头文件 <new>
|
||
class bad_alloc; |
||
std::bad_alloc
是分配函数作为异常抛出的对象类型,以报告存储分配失败。
继承图
成员函数
(构造函数) |
构造 bad_alloc 对象 (公开成员函数) |
operator= |
替换一个 bad_alloc 对象 (公开成员函数) |
what |
返回解释性字符串 (公开成员函数) |
std::bad_alloc::bad_alloc
bad_alloc() throw(); |
(C++11 前) | |
bad_alloc() noexcept; |
(C++11 起) | |
以实现定义的空终止字节字符串构造新的 bad_alloc
对象,字符串能通过 what() 访问。
参数
(无)
std::bad_alloc::operator=
bad_alloc& operator=( const bad_alloc& other ) throw(); |
(C++11 前) | |
bad_alloc& operator=( const bad_alloc& other ) noexcept; |
(C++11 起) | |
以 other
的内容赋值。
参数
other | - | 要赋值的另一异常对象 |
返回值
*this
std::bad_alloc::what
virtual const char* what() const throw(); |
(C++11 前) | |
virtual const char* what() const noexcept; |
(C++11 起) | |
返回解释性字符串。
参数
(无)
返回值
指向有解释性信息的空终止字符串的指针。
继承自 std::exception
成员函数
[虚] |
析构该异常对象 ( std::exception 的虚公开成员函数) |
[虚] |
返回解释性字符串 ( std::exception 的虚公开成员函数) |
示例
运行此代码
#include <iostream> #include <new> int main() { try { while (true) { new int[100000000ul]; } } catch (const std::bad_alloc& e) { std::cout << "Allocation failed: " << e.what() << '\n'; } }
可能的输出:
Allocation failed: std::bad_alloc
参阅
分配函数 (函数) |