- 博客(2)
- 收藏
- 关注
原创 c++ 内存池的实现
平常我们在使用malloc申请内存时,频繁的申请小块内存会造成内存的浪费,所以可以使用内存池来减少内存的浪费。memory_pool.h#ifndef MEMORY_POOL#define MEMORY_POOL#include <iostream>#define size 20#define numsize 10class freenode{public: char data[size]; struct obj { stru
2022-03-27 21:47:34 1389 1
原创 Windows vscode c++配置
1.在扩展栏中下载 C/C++ ,C/C++ Intellisense2打开创建的文件夹,在运行栏中选择添加配置,launch.json修改文件 miDebuggerPath,修改成自己的mingw64的路径{ "version": "0.2.0", "configurations": [ { "name": "g++.exe build and debug active file", "type": "cppd.
2022-03-27 21:29:01 242
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人