new/delete動(dòng)態(tài)管理對(duì)象橄仍,new[]/delete[]動(dòng)態(tài)管理對(duì)象數(shù)組诬垂。
C++中,把int 慷彤、char..等內(nèi)置類型的變量也看作對(duì)象娄蔼,它們也是存在構(gòu)造函數(shù)和析構(gòu)函數(shù)的,只是通常對(duì)它們瞬欧,系統(tǒng)調(diào)用了默認(rèn)的構(gòu)造函數(shù)來(lái)初始化以及默認(rèn)的析構(gòu)(編譯器優(yōu)化)贷屎。所以new int、new int(3)看起來(lái)和普通的定義好像沒什么區(qū)別艘虎。
但對(duì)于自定義類型的對(duì)象唉侄,此種方式在創(chuàng)建對(duì)象的同時(shí),還會(huì)將對(duì)象初始化好野建;于是new/delete属划、new []/delete []方式管理內(nèi)存相對(duì)于malloc/free的方式管理的優(yōu)勢(shì)就體現(xiàn)出來(lái)了,因?yàn)?strong>它們能保證對(duì)象一被創(chuàng)建出來(lái)便被初始化候生,出了作用域便被自動(dòng)清理同眯。
malloc/free和new/delete的區(qū)別和聯(lián)系
malloc/free只是動(dòng)態(tài)分配內(nèi)存空間/釋放空間。而new/delete除了分配空間還會(huì)調(diào)用構(gòu)造函數(shù)和析構(gòu)函數(shù)進(jìn)行初始化與清理(清理成員)唯鸭。
它們都是動(dòng)態(tài)管理內(nèi)存的入口须蜗。
malloc/free是C/C++標(biāo)準(zhǔn)庫(kù)的函數(shù),new/delete是C++操作符。
malloc/free需要手動(dòng)計(jì)算類型大小且返回值w為void*明肮,new/delete可自動(dòng)計(jì)算類型的大小菱农,返回對(duì)應(yīng)類型的指針。
malloc/free管理內(nèi)存失敗會(huì)返回0柿估,new/delete等的方式管理內(nèi)存失敗會(huì)拋出異常循未。
#include<iostream>
#include<cstring>
using namespace std;
int main()
{
char * pia = new char[10];
int * pi = new int[10];
memset(pia,0,10*sizeof(pia));
memset(pi,0,10*sizeof(pi));
// for(int i = 0;i < 10; i++ )
// {
// *s1[i] = i;
// cout << i << ":" <<s1[i] << endl;
// }
*(pia+3) = 99;
*(pi+3) = 99;
pi[2] = 12;
for(int j = 0;j < 10; j++ )
{
cout << j << ":" << *(pia+j)<< endl;
}
cout << "------------" << endl;
for(int j = 0;j < 10; j++ )
{
cout << j << ":" << *(pi+j)<< endl;
}
cout << "------------" << endl;
delete [] pia;
delete [] pi;
return 0;
}
}
out:
0:
1:
2:
3:c
4:
5:
6:
7:
8:
9:
10:
------------
0:0
1:0
2:12
3:99
4:0
5:0
6:0
7:0
8:0
9:0
------------
一個(gè)小練習(xí):
1.new 一個(gè)char數(shù)組
2.全賦0x00
3.通過(guò)iostream的cin賦值
4.全部轉(zhuǎn)換為大寫
5.刪除數(shù)組
#include<iostream>
#include<cstring>
using namespace std;
int main()
{
char * num = new char[10];
char temp;
memset(num,0,10*sizeof(char));
for(int i = 0;i < 10; i++)
{
cout << "num[" << i << "]:" << *(num+i) << endl;
// cout << "num[" << i << "]:" << num[i] << endl;//兩種訪問方法
}
for(int j = 0;j < 10; j++)
{
cout << "num[" << j << "]:" ;
cin >> temp;
if(temp < 0)
break;
//cout << endl;
*(num+j) = temp;
}
cout << "----------------" << endl;
for(int i = 0;i < 10; i++)
{
cout << "num[" << i << "]:" << *(num+i) << endl;
// cout << "num[" << i << "]:" << num[i] << endl;
}
for(int i = 0;i < 10; i++)
{
if ((*(num+i) >= 65)&&(*(num+i) <= 90))
continue;
else
*(num+i) -= 32;
}
for(int i = 0;i < 10; i++)
{
cout << "num[" << i << "]:" << *(num+i) << endl;
}
delete[] num;
return 0;
}
不錯(cuò)的鏈接:
new二維數(shù)組:https://blog.csdn.net/u012234115/article/details/36686457
動(dòng)態(tài)分配:https://blog.csdn.net/shanzhizi/article/details/7835752?utm_source=distribute.pc_relevant.none-task
new/delete&new[]/delete[]:https://www.cnblogs.com/hazir/p/new_and_delete.html