I have two questions about the new operator:
Can the new operator fail to allocate memory?
Should one test after every use of new, if there really was an object created?
|
I have two questions about the new operator:
|
|||
|
operator new throws a bad_alloc exception on failure, unless you're explicitly using the nothrow version. Therefore, don't check the return value. But do wrap the appropriately-scoped branch of your code in a try-catch block: Usually not right around the new call, but somewhere up the line where it makes sense to abort the whole operation that depends on the allocation. UPDATE: See also Jonathan Leffler's comment below about the nothrow variant of new. |
||||
|
|
|
|||
|
|
|
No need to check for null, in general. An allocation failure will throw a std::bad_alloc exception, which you can deal with if you like. The standard indicates: "If an allocation function declared with a non-throwing exception-specification (15.4) fails to allocate storage, it shall return a null pointer. Any other allocation function that fails to allocate storage shall indicate failure only by throwing an exception of a type that would match a handler (15.3) of type std::bad_alloc (18.6.2.1)." YMMV depending on how standards-compliant your compiler actually is. I think most modern c++ compilers should be embarrassed to do it differently. :) |
|||
|
|
However, some people use a non-standard version of |
|||||||||
|
|
I don't think you should check everytime for the new Object to be created, usually new operator doesn't fails in creating the object unless you have some coding issues. The only thing you always have to consider is to have a working constructor, which set up the new object correctly. |
|||
|
|
newreturn on failure? – Jonathan Leffler Mar 4 '11 at 18:37