int globalVar = 1;
static int staticGlobalVar = 1;
//globalVar和staticGlobalVar是在main函数之前初始化,在哪都能用,作用域是全局的
/*区别:它俩的链接属性不一样,globalVar是所有文件可见,staticGlobalVar只在当前文件可见*/
void Test()
{
static int staticVar = 1; //运行到这里才初始化,它的作用域在Test函数中,只能在Test函数中使用
int localVar = 1;
int num1[10] = {
1, 2, 3, 4};
char char2[] = "abcd"; //一个栈上的数组
char* pChar3 = "abcd";
int* ptr1 = (int*)malloc(sizeof (int)*4);
int* ptr2 = (int*)calloc(4, sizeof(int));
int* ptr3 = (int*)realloc(ptr2, sizeof(int)*4);
free (ptr1);
free (ptr3);
}
globalVar在哪里?数据段
staticGlobalVar在哪里?数据段
staticVar在哪里?数据段
localVar在哪里?栈
num1 在哪里?栈__
char2在哪里?栈
*char2在哪里?栈_
pChar3在哪里?栈__
*pChar3在哪里?代码段
ptr1在哪里?栈 *ptr1在哪里?_ 堆__
sizeof(num1) = 40;
sizeof(char2) = 5;
strlen(char2) = __4;
sizeof(pChar3) = 4/8;
strlen(pChar3) = 4;
sizeof(ptr1) = 4/8;
malloc / calloc / realloc 和 free
malloc:申请空间;
calloc:申请空间并初始化为0;
realloc:对原来已经有的空间进行扩容。
C语言内存管理方式在C++中可以继续使用,但有些地方就无能为力而且使用起来比较麻烦,因此C++又提出
了自己的内存管理方式:通过new和delete操作符进行动态内存管理。
申请和释放单个元素的空间,使用new和delete操作符,申请和释放连续的空间,使用new[]和delete[]
void Test()
{
// 动态申请一个int类型的空间
int* ptr4 = new int;
// 动态申请一个int类型的空间并初始化为3
int* ptr5 = new int(3);
// 动态申请3个int类型的空间
int* ptr6 = new int[3];
delete ptr4;
delete ptr5;
delete[] ptr6; }
在申请自定义类型的空间时,new 会调用构造函数,delete会调用析构函数,而malloc 和 free不会。
class Test
{
public:
Test()
: _data(0)
{
cout<<"Test():"<<this<<endl;
}
~Test()
{
cout<<"~Test():"<<this<<endl;
}
private:
int _data;
};
void Test2()
{
// 申请单个Test类型的空间
Test* p1 = (Test*)malloc(sizeof(Test));
free(p1);
// 申请10个Test类型的空间
Test* p2 = (Test*)malloc(sizoef(Test) * 10);
free(p2);
}
void Test2()
{
// 申请单个Test类型的对象
Test* p1 = new Test;
delete p1;
// 申请10个Test类型的对象
Test* p2 = new Test[10];
delete[] p2;
}
malloc/free和new/delete的共同点是:都是从堆上申请空间,并且需要用户手动释放。不同的地方是:
malloc、operator new 和 new 的区别:
malloc
operator new --> malloc+失败抛异常实现
new - - > operator new + 构造函数
new 比起malloc不一样的地方:1、调用构造函数初始化 2、失败了抛异常
delete 比如free不一样的地方:1、调用析构函数清理
operator free 和 free没区别,因为释放空间失败直接终止进程。 是因为要跟operator new成对出现才产生。
如果申请的是内置类型的空间,new和malloc,delete和free基本类似,不同的地方是:new/delete申请和
释放的是单个元素的空间,new[]和delete[]申请的是连续空间,而且new在申请空间失败时会抛异常,
malloc会返回NULL。
new的原理:
delete的原理:
new T[N]的原理:
delete[]的原理:
内存泄漏指因为疏忽或错误造成程序未能释放已经不再使用的内存的情况。内存泄漏并不是指内存在物理上的消失,而是应用程序分配某段内存后,因为设计错误,失去了对该段内存的控制,因而造成了内存的浪费。
内存泄露的危害:长期运行的程序出现内存泄漏,影响很大,如操作系统、后台服务等等,出现内存泄漏会导致响应越来越慢,最终卡死。
void MemoryLeaks()
{
// 1.内存申请了忘记释放
int* p1 = (int*)malloc(sizeof(int));
int* p2 = new int;
// 2.异常安全问题
int* p3 = new int[10];
Func(); // 这里Func函数抛异常导致 delete[] p3未执行,p3没被释放.
delete[] p3;
}
内存泄露的分类:
new和delete是用户进行动态内存申请和释放的操作符,operator new 和operator delete是系统提供的全局函数,new在底层调用operator new全局函数来申请空间,delete在底层通过operator delete全局函数来释放空间。
#include
using namespace std;
class A
{
public:
A(int a = 0)
:_a(a)
{
cout << "A()" << endl;
}
~A()
{
cout << "~A()" << endl;
}
private:
int _a;
};
int main()
{
A* p1 = (A*)malloc(sizeof(A));
A* p3 = (A*)operator new(sizeof(A));
// operator new和malloc的区别是什么?
// 结论:使用方式都一样,处理错误的方式不一样
size_t size = 2;
void* p4 = malloc(size*1024*1024*1024);
cout << p4 << endl; // 失败返回0
//free(p4);
try
{
void* p5 = operator new(size * 1024 * 1024 * 1024);
cout << p5 << endl; // 失败抛异常 (面向对象处理错的方式)
//operator delete(p5);
}
catch (exception& e)
{
cout << e.what() << endl;
}
return 0;
}
struct ListNode
{
ListNode* _next;
ListNode* _prev;
int _data;
void* operator new(size_t n)
{
void* p = nullptr;
p = allocator<ListNode>().allocate(1); // 内存池
cout << "memory pool allocate" << endl;
return p;
}
void operator delete(void* p)
{
allocator<ListNode>().deallocate((ListNode*)p, 1);
cout << "memory pool deallocate" << endl;
}
};
class List
{
public:
List()
{
_head = new ListNode; // 全局operator new + 构造函数
_head->_next = _head;
_head->_prev = _head;
}
// void PushBack(int val);
~List()
{
ListNode* cur = _head->_next;
while (cur != _head)
{
ListNode* next = cur->_next;
delete cur;
cur = next;
}
delete _head;
_head = nullptr;
}
private:
ListNode* _head;
};
int main()
{
List l;
return 0;
}