博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
malloc free vs new delete
阅读量:6767 次
发布时间:2019-06-26

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

String * ptr_str = static_cast
(3*malloc(sizeof(String)));only Allocates the memory ;String * ptr_str2 = new String[3];calls the constructure of string class;delete[]ptr;if delete ptr only delte string[0]

 

转载于:https://www.cnblogs.com/leetcode/p/3271797.html

你可能感兴趣的文章
【linux】redhat 下 开启ftp 服务
查看>>
linux ssh配置文件的详解
查看>>
我的友情链接
查看>>
linux read 用法
查看>>
minikebe部署
查看>>
在CentOS6.x中安装Docker
查看>>
我的友情链接
查看>>
类似Datepicker的月份选择插件
查看>>
存储过程显示输出
查看>>
我的友情链接
查看>>
CentOS 6网卡名称修改 以及 centos7 采用传统命名方式
查看>>
来食路 - 素食系列之怎么挑选时令好蔬果
查看>>
json-lib的一个BUG,Float型数据会失真
查看>>
思科 GNS3 配置 静态 NAT
查看>>
Maven 中的jar包冲突
查看>>
关于大型网站技术演进的思考(三)--存储的瓶颈(3)
查看>>
lvs基于fwm定义集群服务
查看>>
事务的4种隔离级别
查看>>
使用goaccess解析nginx日志
查看>>
mvc问题小记
查看>>