std::nothrow
Posted mingzhang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了std::nothrow相关的知识,希望对你有一定的参考价值。
This constant value is used as an argument for operator new and operator new[] to indicate that these functions shall not throw an exception on failure, but return a null pointer instead.
int * p = new (std::nothrow) int;
int *p = new(std::nothrow)int[10]
以上是关于std::nothrow的主要内容,如果未能解决你的问题,请参考以下文章