问题描述
- 关于使用 new BYTE(100)使用之后delete出错,错误信息:堆栈被破坏
-
错误如题,代码如下:
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
struct name
{
char name_char;
int fi;
};struct student_info
{
int id;
long student_id;
int class_num;
name cn[1];
};
void main()
{
int len_byte = sizeof(student_info)+25*sizeof(name);
student_info* student = (student_info*) new BYTE(len_byte);student->id = 11; student->class_num = 11; student->student_id = 123434; for(int i = 0 ; i < 26 ; i ++) { student->cn[i].name_char = (char)(i+22); student->cn[i].fi = i; } cout<<"hello C++"<<endl; delete student;//在执行这个语句的时候VS会抛出异常,
}
错误显示如下:
其原因可能是堆被损坏,这说明 test_other_func_code.exe 中或它所加载的任何 DLL 中有 Bug。原因也可能是用户在 test_other_func_code.exe 具有焦点时按下了 F12。
解决方案
student_info* student = new student_info();
就可以了。
你这样也不能改变cn数组的大小
解决方案二:
我需要在后面连一串name,而且name的长度是不定的。所以需要在new的时候new出一块同样的内存
时间: 2024-10-02 03:38:17