我在完成老师布置的课程设计时遇到了这样的错误:stack around the variable “XX” was corrupted.,中文翻译就是“在变量XX周围的堆栈已损坏”。后面在上网看了很多技术资料,发现大多数网站都有这样的文章:
- 把project->配置属性->c/c++->代码生成->基本运行时检查为默认值就不会报本异常。具体原因正在研究中。。。
- 如果改为其他就有exception。
- exception有时是有道理的
- //step1
- STRINGC2&STRINGC2::operator+=(constcharx)
- {
- //if(x==0)return*this;
- charptr[1];//maxis1digit
- ptr[0]=x;
- ptr[1]='/0';
- *this+=ptr;//offtostep2andback
- return*this;//step4crash
- }
- 这个也会导致上述exception。
- 问题描述:
- Problem
- ThefollowingerrormessageoccurswhenbuildingonTestRealTImeenvironmentwiththecvisual7TDP?
- Run-TimeCheckFailure#2-Stackaroundthevariable'xxx'wascorrupted.
- Cause
- Stackpointercorruptioniscausedwritingoutsidetheallocatedbufferinstackmemeory.
- Solution
- Thiskindoferrorisdetectedbysetting/RTC1compileroptionfrommenuProject->Settings->Configurationproperties->Build->Compiler->CompilerflagswhenusingTDPcvisual7inIBM®Rational®TestRealTimeenvironment..Thisenablesstackframerun-timeerrorchecking.Forexample,thefollowingcodemaycausetheaboveerrormessge.
- #include<stdio.h>
- #include<string.h>
- #defineBUFF_LEN11//12mayfixtheRun-TimeCheckFailure#2
- intrtc_option_test(char*pStr);
- intmain()
- {
- char*myStr="helloworld";
- rtc_option_test(myStr);
- return0;
- }
- intrtc_option_test(char*pStr)
- {
- charbuff[BUFF_LEN];
- strcpy(buff,pStr);//causeRun-TimeCheckFailure#2-Stackaround
- //thevariable'buff'wascorrupted.
- return0;
- }
我也尝试了把“project->配置属性->c/c++->代码生成”改为基本运行时检查,就没有这样的错误了。关于MSDN的解释是在堆栈外面读写某数据。错误是名为RTC1的编译器检测的。又看了更多的技术文章,发现这样的错误是程序员在项目到了一定大的时候,它占用的堆栈量就比较大。我也深有体会。因为自己本来编写一个类,运行时没有错,但是在添加成员属性的时候,在其它方式不变的情况下就容易发生这样的错误。所以据此我猜应该是VS2005(2008)在内部就限定了堆栈的大小,当项目足够大的时候,就会溢出。