码迷,mamicode.com
首页 > 其他好文 > 详细

std::nothrow

时间:2019-08-03 21:37:03      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:tor   amp   nbsp   hal   const   operator   function   return   instead   

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

标签:tor   amp   nbsp   hal   const   operator   function   return   instead   

原文地址:https://www.cnblogs.com/mingzhang/p/11296307.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!