c 栈内存和堆内存的基本使用小结-kb88凯时官网登录

来自:网络
时间:2024-09-10
阅读:
免费资源网,https://freexyz.cn/

c 栈内存和堆内存的基本使用

#include 
// 定义一个简单的结构体
struct person {
  std::string name;
  int age;
};
int main() {
  // 栈内存分配
  int a = 10; // 基本数据类型的栈内存分配
  person person; // 结构体的栈内存分配
  person.name = "john";
  person.age = 30;
  std::cout << "stack memory usage:" << std::endl;
  std::cout << "a = " << a << std::endl;
  std::cout << "person name: " << person.name << ", age: " << person.age << std::endl;
  // 堆内存分配
  int* p = new int; // 基本数据类型的堆内存分配
  *p = 20;
  person* personptr = new person; // 结构体的堆内存分配
  personptr->name = "alice";
  personptr->age = 25;
  std::cout << "heap memory usage:" << std::endl;
  std::cout << "*p = " << *p << std::endl;
  std::cout << "personptr name: " << personptr->name << ", age: " << personptr->age << std::endl;
  // 释放堆内存
  delete p;
  delete personptr;
  return 0;
}

动态数组的使用和内存管理

#include 
int main() {
  // 动态数组的堆内存分配
  int size = 5;
  int* array = new int[size];
  // 初始化数组
  for (int i = 0; i < size;   i) {
    array[i] = i * 10;
  }
  // 打印数组
  std::cout << "dynamic array:" << std::endl;
  for (int i = 0; i < size;   i) {
    std::cout << "array[" << i << "] = " << array[i] << std::endl;
  }
  // 释放堆内存
  delete[] array;
  return 0;
}

内存泄漏示例及其kb88凯时官网登录的解决方案

#include 
void memoryleakexample() {
  int* leakarray = new int[100]; // 这个数组没有被释放,造成内存泄漏
  // 正确的处理方式
  delete[] leakarray;
}
int main() {
  // 调用内存泄漏示例
  memoryleakexample();
  return 0;
}

智能指针的使用

c 11引入了智能指针,可以自动管理内存,避免内存泄漏。

#include 
#include  // 需要包含这个头文件
class myclass {
public:
  myclass() {
    std::cout << "constructor called" << std::endl;
  }
  ~myclass() {
    std::cout << "destructor called" << std::endl;
  }
  void display() {
    std::cout << "display method called" << std::endl;
  }
};
int main() {
  // 使用unique_ptr
  std::unique_ptr ptr1(new myclass());
  ptr1->display();
  // 使用shared_ptr
  std::shared_ptr ptr2 = std::make_shared();
  ptr2->display();
  return 0;
}

到此这篇关于c 栈内存和堆内存的基本使用小结的文章就介绍到这了,更多相关c 栈内存和堆内存内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持! 

免费资源网,https://freexyz.cn/
返回顶部
顶部
网站地图