博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
std::nothrow
阅读量:5049 次
发布时间:2019-06-12

本文共 281 字,大约阅读时间需要 1 分钟。

This constant value is used as an argument for  and  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]

转载于:https://www.cnblogs.com/mingzhang/p/11296307.html

你可能感兴趣的文章
spring security 11种过滤器介绍
查看>>
Hibernate一对多、多对一关联
查看>>
一、记录Git使用中遇到的问题及解决方法
查看>>
学习网址
查看>>
前端表格插件datatables
查看>>
内部类
查看>>
树链剖分入门
查看>>
图解算法时间复杂度
查看>>
UI_搭建MVC
查看>>
一个样例看清楚JQuery子元素选择器children()和find()的差别
查看>>
代码实现导航栏分割线
查看>>
Windows Phone开发(7):当好总舵主 转:http://blog.csdn.net/tcjiaan/article/details/7281421...
查看>>
VS 2010打开设计器出现错误
查看>>
SQLServer 镜像功能完全实现
查看>>
Vue-详解设置路由导航的两种方法
查看>>
一个mysql主从复制的配置案例
查看>>
大数据学习系列(8)-- WordCount+Block+Split+Shuffle+Map+Reduce技术详解
查看>>
dvwa网络渗透测试环境的搭建
查看>>
Win8 安装VS2012 和 Sql Server失败问题
查看>>
过点(2,4)作一直线在第一象限与两轴围成三角形,问三角形面积的最小值?...
查看>>