- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
#define _CRT_SECURE_NO_WARNINGS
#include < stdio.h >
#include < stdlib.h >
#include < string.h >
#include < crtdbg.h >
#define _CRTDBG_MAP_ALLOC
enum {
RUNNING = 1
};
struct Point {
int x, y;
};
struct Line {
Point start;
Point end;
};
struct GraphicElement {
enum {
SIZE = 256
};
unsigned int numLines; //number of lines
Line * pLines; //plines points to start and end
char name[SIZE];
};
typedef struct {
unsigned int numGraphicElements;
GraphicElement * pElements; //the head points to pLines
}
VectorGraphic;
void InitVectorGraphic(VectorGraphic * );
void AddGraphicElement(VectorGraphic * );
void CleanUpVectorGraphic(VectorGraphic * );
VectorGraphic Image;
int main() {
char response;
InitVectorGraphic( & Image);
_CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
while (RUNNING) {
printf("\nPlease select an option:\n");
printf("1. Add a Graphic Element\n");
printf("2. List the Graphic Elements\n");
printf("q. Quit\n");
printf("CHOICE: ");
fflush(stdin);
scanf("%c", & response);
switch (response) {
case '1':
AddGraphicElement( & Image);
break;
case '2':
ReportVectorGraphic( & Image);
break;
case 'q':
CleanUpVectorGraphic( & Image);
return 0;
default:
printf("Please enter a valid option\n");
}
printf("\n");
}
}
/*initialize the vectors, allocate memory*/
void InitVectorGraphic(VectorGraphic * pImage) { //addres of pImage is passed in
pImage - > pElements = (GraphicElement * ) malloc(sizeof(GraphicElement)); //pImage is now the addess of image
pImage - > numGraphicElements = 0;
}
/*add values into the vectors list.*/
void AddGraphicElement(VectorGraphic * pImage) {
struct GraphicElement * pElements;
struct GraphicElement * pSecond;
struct Point point;
struct Line * line;
unsigned int numLines;
char name[256];
int x;
int y;
int i = 0;
int count = 0;
//allocate memory
line = (struct Line * ) malloc(20 * sizeof(Line)); //allocate memory for line, in order to accsess Line struct values
pElements = (GraphicElement * ) malloc(20 * sizeof(GraphicElement));
printf("Please enter the name of the new GraphicElement(<256 characters): ");
scanf("%s", name);
strcpy(pElements - > name, name); //copy the elements name
printf("How many lines are there in the new GraphicElement? ");
scanf("%u", & numLines);
pElements - > numLines = numLines; //pass the number of lines indicated
pImage - > pElements = pElements; //pass the number of lines indicated
pImage - > pElements[pImage - > numGraphicElements] = * pElements; //pass the elements into pImage
pImage - > numGraphicElements++; //number of elements
一旦我按 q 退出。该程序显示我有内存泄漏。检测到内存泄漏!转储对象 ->{69} 位于 0x00EF9880 的正常 block ,长度为 264 字节。数据:<> CD CD CD CD CD CD CD CD CD CD CD CD CD CD CD对象转储完成
/*clear everything, no memory leaks*/
void CleanUpVectorGraphic(VectorGraphic * pImage) {
/* free all Lines pointers */
for (int i = 0; i < pImage - > pElements - > numLines; i++) {
free(pImage - > pElements[i].pLines);
}
pImage - > pElements - > numLines = 0;
pImage - > numGraphicElements = 0;
if (pImage != NULL) {
free(pImage - > pElements);
}
}
基本上,我的程序会提示用户输入元素名称和元素数量。之后,我输入 start(x,y) 和 end(x,y) 的 int 值。之后我按 q 退出并退出程序。我已经通过调试器进行了调试,但没有弄清楚内存泄漏在哪里。我尝试了很多不同的策略,但都失败了。我怎样才能释放这个内存泄漏?
注意:此外,如果我添加第二个元素,内存泄漏也会重复。
最佳答案
从内存块的大小看来,您尝试释放的指向 GraphicElement 的指针并未指向任何内容
在使用、取消引用或释放原始指针之前始终检查它们:
void CleanUpVectorGraphic(VectorGraphic * pImage) {
//always check input
if(!pImage) {
return;
}
/* free all Lines pointers */
for (int i = 0; i < pImage->pElements->numLines; i++) {
if(pImage->pElements && pImage->pElements[i] && pImage->pElements[i].pLines) {
free(pImage->pElements[i].pLines);
}
}
pImage->pElements->numLines = 0;
pImage->numGraphicElements = 0;
if (pImage != NULL) {
free(pImage->pElements);
}
}
关于c++ - 我有 1 处内存泄漏,无法释放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39691954/
我有一个附加了 View Controller 的 AVAudioPlayer 实例。 @property (nonatomic, retain) AVAudioPlayer *previewAudi
我是java初学者。假设我声明了一个 Account 类型的变量 Account _account = new Account("Thomas"); 然后在其他地方我做了这样的事情: _account
我在我的应用程序中使用了 3 个 UIViewController,现在我想知道当我从另一个应用程序切换到另一个 UIViewController 时释放它们是否是一个好主意。显然,这将是隐藏的,当它
我分配了一个直接缓冲区: ByteBuffer directBuffer = ByteBuffer.allocateDirect(1024); 我读过: Deallocating Direct Buf
场景。我有一个图表,我可以使用右键单击来执行平移。这非常有效。然后我完美地添加了右键菜单。 问题。现在,即使在拖动操作完成后释放鼠标,也会显示右键菜单。 有没有办法在 Java Swing 或 Jav
我使用此代码获取 ABPerson 的姓氏 CFStringRef lastNameRef = ABRecordCopyValue((ABRecordRef)personRecordRef, kABP
目前,我们在基于 C 的嵌入式应用程序中使用 malloc/free Linux 命令进行内存分配/取消分配。我听说这会导致内存碎片,因为内存分配/取消分配会导致堆大小增加/减少,从而导致性能下降。其
当我尝试释放缓冲区时遇到问题。每次我尝试将缓冲区传递给释放方法时,都会发生段错误。 Valgrind 确认段错误位于 BufferDeallocate 方法中。 ==30960== Memcheck,
我想知道何时按下或释放修改后的键(Ctrl 或 Shift)。 基本上,用户可以在按下修改键的情况下执行多次击键,而我不想在它被释放之前执行一个操作(想想 Emacs 和 Ctrl + X + S).
我编写了一个相当大的网络应用程序。它运行良好一段时间,然后慢慢开始运行缓慢,因为 DOM 节点开始爬升到 80,000 - 100,000 左右。 所以我一直在 Chrome 开发工具控制台 (DCT
我知道在像 c 这样的语言中,我需要在分配内存后释放它。 (我来自 Java),对此我有几个问题: 当我在做的时候: int array[30]; (即创建一个大小为 30 个整数的数组)与
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: How to release pointer from boost::shared_ptr? Detach
我有一个可以从多个后台线程访问的类,可能同时访问。我无法复制该类,因为重新创建它的内容(处理或内存方面)可能很昂贵。 也有可能在后台处理仍在继续并访问该属性时替换了此类的属性。 目前我有定期的保留/释
这个问题是对: 的扩展链接-1:Creating an image out of the ios surface and saving it Link-2:Taking Screenshots fro
我有一个实例变量 NSMutableArray* searchResults。 首先,我初始化它: self.searchResults = [[NSMutableArray alloc] init]
如果我在堆上声明一些东西,比如 char *a=new char[1000] 并且主程序停止,如果没有 delete[]<,那么分配的内存会发生什么 调用?它保留在堆上还是自动释放? 最佳答案 就C+
在开发相机应用时,我遇到了一个异常,该异常仅在我切换到其他应用时发生(onPause() 用于我的应用)。 01-15 17:22:15.017: E/AndroidRuntime(14336): F
使用 JDK 1.8 编译时出现 maven 编译器错误 无法执行目标 org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (de
将 BufferedImage 保存到磁盘(以释放内存)的最快方法是什么? 我的 Java 应用程序处理大量图像(每约 300 毫秒将图像加载到内存中)。大多数这些图像都会立即被丢弃 (gc),但每隔
使用 JDK 1.8 编译时出现 maven 编译器错误 未能在项目 DUMMY 上执行目标 org.apache.maven.plugins:maven-compiler-plugin:3.8.1:
我是一名优秀的程序员,十分优秀!