new.3
来自「Free C++ Standard Library」· 3 代码 · 共 84 行
3
84 行
.TH new.cc 3 "13 Sep 1999" "FREE_C++_STANDARD_LIBRARY" \" -*- nroff -*-.ad l.nh.SH NAMEnew.cc \- .SH SYNOPSIS.br.PP.SS Namespaces.in +1c.ti -1c.RI "namespace \fBstd\fR".br.in -1c.SS Functions.in +1c.ti -1c.RI "void* \fBoperator new\fR (std::size_t size) throw(std::bad_alloc)".br.ti -1c.RI "void* \fBoperator new\fR (std::size_t size, const \fBstd::nothrow_t\fR&) throw()".br.ti -1c.RI "void \fBoperator delete\fR (void* ptr) throw()".br.ti -1c.RI "void \fBoperator delete\fR (void* ptr, const \fBstd::nothrow_t\fR&) throw()".br.ti -1c.RI "void* \fBoperator new[]\fR (std::size_t size) throw(std::bad_alloc)".br.ti -1c.RI "void* \fBoperator new[]\fR (std::size_t size, const \fBstd::nothrow_t\fR&) throw()".br.ti -1c.RI "void \fBoperator delete[]\fR (void* ptr) throw()".br.ti -1c.RI "void \fBoperator delete[]\fR (void* ptr, const \fBstd::nothrow_t\fR&) throw()".br.ti -1c.RI "void* \fBoperator new\fR (std::size_t size, void* ptr) throw()".br.ti -1c.RI "void* \fBoperator new[]\fR (std::size_t size, void* ptr) throw()".br.ti -1c.RI "void \fBoperator delete\fR (void* ptr, void*) throw()".br.ti -1c.RI "void \fBoperator delete[]\fR (void* ptr, void*) throw()".br.in -1c.SH FUNCTION DOCUMENTATION (1).PP .SS void* operator new (std::size_t size) throw(\fBstd::bad_alloc\fR).PP.SS void* operator new (std::size_t size, const \fBstd::nothrow_t\fR &) throw().PP.SS void operator delete (void * ptr) throw().PP.SS void operator delete (void * ptr, const \fBstd::nothrow_t\fR &) throw().PP.SS void* operator new[] (std::size_t size) throw(\fBstd::bad_alloc\fR).PP.SS void* operator new[] (std::size_t size, const \fBstd::nothrow_t\fR &) throw().PP.SS void operator delete[] (void * ptr) throw().PP.SS void operator delete[] (void * ptr, const \fBstd::nothrow_t\fR &) throw().PP.SS void* operator new (std::size_t size, void * ptr) throw().PP.SS void* operator new[] (std::size_t size, void * ptr) throw().PP.SS void operator delete (void * ptr, void *) throw().PP.SS void operator delete[] (void * ptr, void *) throw().PP.SH AUTHOR.PP Generated automatically by Doxygen for FREE_C++_STANDARD_LIBRARY from the source code.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?