Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/memory/new/bad alloc"

From cppreference.com
< cpp‎ | memory‎ | new
(Undo revision 99241 by Zixuan75 (talk))
(Undo revision 99240 by 2606:A000:6604:D700:B09A:9138:E50D:2E0E (talk) rvv)
Line 32: Line 32:
 
{{rev begin}}
 
{{rev begin}}
 
{{rev | until=c++11 | (none)}}
 
{{rev | until=c++11 | (none)}}
{{rev | since=c++11 | {{noexcept}}}}
+
{{rev | since=c++11 | {{unreviewed noexcept}}}}
 
{{rev end}}
 
{{rev end}}
 
}}
 
}}
Line 56: Line 56:
 
{{rev begin}}
 
{{rev begin}}
 
{{rev | until=c++11 | (none)}}
 
{{rev | until=c++11 | (none)}}
{{rev | since=c++11 | {{noexcept}}}}
+
{{rev | since=c++11 | {{unreviewed noexcept}}}}
 
{{rev end}}
 
{{rev end}}
 
}}
 
}}
Line 78: Line 78:
 
{{rev begin}}
 
{{rev begin}}
 
{{rev | until=c++11 | (none)}}
 
{{rev | until=c++11 | (none)}}
{{rev | since=c++11 | {{noexcept}}}}
+
{{rev | since=c++11 | {{unreviewed noexcept}}}}
 
{{rev end}}
 
{{rev end}}
 
}}
 
}}

Revision as of 18:16, 5 March 2018

 
 
Utilities library
General utilities
Relational operators (deprecated in C++20)
 
Dynamic memory management
Uninitialized memory algorithms
Constrained uninitialized memory algorithms
Allocators
Garbage collection support
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)



 
 
Defined in header <new>
class bad_alloc;

std::bad_alloc is the type of the object thrown as exceptions by the allocation functions to report failure to allocate storage.

cpp/error/exceptionstd-bad alloc-inheritance.svg

Inheritance diagram

Contents

Member functions

(constructor)
constructs the bad_alloc object
(public member function)
operator=
replaces a bad_alloc object
(public member function)
what
returns explanatory string
(public member function)

std::bad_alloc::bad_alloc

bad_alloc();

Constructs new bad_alloc object with an implementation-defined null-terminated byte string which is accessible through what().

Parameters

(none)

Exceptions

(none) (until C++11)
noexcept specification:  
noexcept
  
(since C++11)

std::bad_alloc::operator=

bad_alloc& operator=( const bad_alloc& other );

Assigns the contents of other.

Parameters

other - another exception object to assign

Return value

*this

Exceptions

(none) (until C++11)
noexcept specification:  
noexcept
  
(since C++11)

std::bad_alloc::what

virtual const char* what() const;

Returns the explanatory string.

Parameters

(none)

Return value

Pointer to a null-terminated string with explanatory information.

Exceptions

(none) (until C++11)
noexcept specification:  
noexcept
  
(since C++11)

Inherited from std::exception

Member functions

[virtual]
destroys the exception object
(virtual public member function of std::exception) [edit]
[virtual]
returns an explanatory string
(virtual public member function of std::exception) [edit]

Example

#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';
    }
}

Possible output:

Allocation failed: std::bad_alloc

See also

allocation functions
(function) [edit]