C++ – Map中存储动态指针时正确释放内存
#ifdef _DEBUG #define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__) #else #define DEBUG_CLIENTBLOCK #endif #define _CRTDBG_MAP_ALLOC #incl…
- C++
- 2019-11-10
C++读取Shp文件并将Shp转化为DXF
1 代码示例 #include<stdio.h> #include<math.h> #include<stdlib.h> #include<string.h> void show(char aa[]) { int i; for(i=0;i<8;i…
- C++
- 2019-11-04