std::nothrow

std::nothrow 

说明:在内存不足时,new (std::nothrow)并不抛出异常,而是将指针置NULL。

用法:

auto s = new (std::nothrow) Camera3DTestScene();
 
 


解释:https://msdn.microsoft.com/zh-cn/library/49147z04.aspx

通俗版:http://blog.csdn.net/huyiyang2010/article/details/5984987

你可能感兴趣的:(std::nothrow)