cplusplus
.com
教程
参考
文章
论坛
C++
教程
参考
文章
论坛
参考
C 库
<cassert> (assert.h)
<cctype> (ctype.h)
<cerrno> (errno.h)
C++11
<cfenv> (fenv.h)
<cfloat> (float.h)
C++11
<cinttypes> (inttypes.h)
<ciso646> (iso646.h)
<climits> (limits.h)
<clocale> (locale.h)
<cmath> (math.h)
<csetjmp> (setjmp.h)
<csignal> (signal.h)
<cstdarg> (stdarg.h)
C++11
<cstdbool> (stdbool.h)
<cstddef> (stddef.h)
C++11
<cstdint> (stdint.h)
<cstdio> (stdio.h)
<cstdlib> (stdlib.h)
<cstring> (string.h)
C++11
<ctgmath> (tgmath.h)
<ctime> (time.h)
C++11
<cuchar> (uchar.h)
<cwchar> (wchar.h)
<cwctype> (wctype.h)
容器
C++11
<array>
<deque>
C++11
<forward_list>
<list>
<map>
<queue>
<set>
<stack>
C++11
<unordered_map>
C++11
<unordered_set>
<vector>
输入/输出
<fstream>
<iomanip>
<ios>
<iosfwd>
<iostream>
<istream>
<ostream>
<sstream>
<streambuf>
多线程
C++11
<atomic>
C++11
<condition_variable>
C++11
<future>
C++11
<mutex>
C++11
<thread>
其他
<algorithm>
<bitset>
C++11
<chrono>
C++11
<codecvt>
<complex>
<exception>
<functional>
C++11
<initializer_list>
<iterator>
<limits>
<locale>
<memory>
<new>
<numeric>
C++11
<random>
C++11
<ratio>
C++11
<regex>
<stdexcept>
<string>
C++11
<system_error>
C++11
<tuple>
C++11
<type_traits>
C++11
<typeindex>
<typeinfo>
<utility>
<valarray>
<new>
函数(全局命名空间)
operator delete
operator delete[]
operator new
operator new[]
函数(std 命名空间)
C++11
get_new_handler
set_new_handler
类型
bad_alloc
C++11
bad_array_new_length
new_handler
nothrow_t
常量
nothrow
参考
<new>
get_new_handler
函数
<new>
std::
get_new_handler
new_handler get_new_handler() noexcept;
获取 new-handler 函数
获取
new-handler 函数
。
new-handler 函数
是默认的
分配函数
(
operator new
和
operator new[]
)在无法分配存储时所调用的函数。
如果程序通过之前的
set_new_handler
调用没有设置此函数(或者最后一次调用
set_new_handler
是为了重置它),则该函数返回
空指针
。
参数
无
返回值
如果此函数先前已通过调用
set_new_handler
设置,则返回当前
new-handler 函数
的值。
或者,如果程序从未调用过
set_new_handler
(或通过该调用被重置),则返回
空指针
。
new_handler
是一个不接受参数且不返回值 的函数指针类型。
数据竞争
调用此函数不会引入数据争用,并且与对
set_new_handler
的调用是同步的。
异常安全
无异常保证:
此函数从不抛出异常。
另见
set_new_handler
设置 new 处理程序函数
(函数)
new_handler
new 处理程序函数的类型
(类型)
operator new
分配存储空间
(函数)