molloc与new
创建对象的步骤:1、申请空间 2、调用构造函数初始化
在C++中,malloc是不会执行构造函数的,他只是实现了内存的分配,所以C++中不用malloc创建对象
free同样也是在释放内存,不会销毁对象资源。C++中使用new来创建对象(创建对象的同时会调用构造函数),用delete来删除对象(同时调用析构函数)。
#include <iostream>
#include <cstdlib>
using namespace std;
class Test
{
public:
Test()
{
cout << "Test构造函数" << endl;
}
~Test()
{
cout << "Test析构函数" << endl;
}
};
int main()
{
//Test t1; //栈空间创建对象
//创建对象 1、申请空间 2、调用构造函数初始化 C++中不用malloc创建对象
Test *pt = (Test *)malloc(sizeof(Test) * 1);//在堆空间申请一个对象大小的内存
if (NULL == pt)
{
cout << "malloc failure" << endl;
}
free(pt); //释放内存, 不是释放对象
Test *pt2 = new Test; // 申请堆内存, 调用构造函数 自动调用构造函数
delete pt2; //调用析构函数
return 0;
}
关于new,delete的用法
#include <iostream>
using namespace std;
class Test
{
public:
Test()
{
cout << " 无参构造函数" <<endl;
}
Test(int a, int b)
{
cout << "有参构造函数" << endl;
}
~Test()
{
cout << " 析构函数" << endl;
}
};
int main()
{
int *p1 = new int; //给一个整数申请空间
cout << *p1 << endl;
delete p1;
char *p2 = new char; //给一个字符申请空间
delete p2;
int *p3 = new int(100);//给一个整数申请空间同时初始化为100
cout << *p3 << endl;
delete p3;
char *p4 = new char[10];//给十个字符申请空间
delete[] p4;
Test *t1 = new Test;
delete t1;
Test *t2 = new Test(1, 2);
delete t2;
return 0;
}
初始化列表适用环境: 1、类对象作为成员变量并且该类并没有提供无参构造函数 2、成员变量被const修饰(初始化和赋值不同)
初始化列表总结:
1、初始化列表要优先于当前对象的构造函数先执行
2、子对象的初始化顺序和其在初始化列表的排列顺序无关,但和在类中的声明顺序有关,先声明的先初始化
3、析构函数的调用顺序与构造函数相反
4、初始化const成员变量,初始化const成员变量的唯一办法就是使用参数初始化表
#include <iostream>
using namespace std;
class Data
{
private:
int year;
int mouth;
int day;
public:
Data(int y, int m, int d)
{
year = y;
mouth = m;
day = d;
}
};
//对象初始化列表: 1、类对象作为成员变量并且该类并没有提供无参构造函数
// 2、成员变量被const修饰(初始化和赋值不同)
class Student
{
const int id; //const声明后,ID中不能被修改,且是垃圾值,无用。所以需要列表初始化他。(id这类信息是怎么样的一类信息呢,为什么const修饰呢,就跟每个人身份证一样,初始化一般不容修改,所以用const修饰)
Data birth;
public:
Student(int i, int y, int m, int d) : birth(y, m, d), id(i) //其实可以这么理解:对上述声明进行赋值 方法是对象名或者变量名(值) ;然后构造函数中命名的类中贴上这些内容。
{
}
};
int main()
{
Student s1(1,1992,0,0);
return 0;
}