Java学习者论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

手机号码,快捷登录

恭喜Java学习者论坛(https://www.javaxxz.com)已经为数万Java学习者服务超过8年了!积累会员资料超过10000G+
成为本站VIP会员,下载本站10000G+会员资源,购买链接:点击进入购买VIP会员
JAVA高级面试进阶视频教程Java架构师系统进阶VIP课程

分布式高可用全栈开发微服务教程

Go语言视频零基础入门到精通

Java架构师3期(课件+源码)

Java开发全终端实战租房项目视频教程

SpringBoot2.X入门到高级使用教程

大数据培训第六期全套视频教程

深度学习(CNN RNN GAN)算法原理

Java亿级流量电商系统视频教程

互联网架构师视频教程

年薪50万Spark2.0从入门到精通

年薪50万!人工智能学习路线教程

年薪50万!大数据从入门到精通学习路线年薪50万!机器学习入门到精通视频教程
仿小米商城类app和小程序视频教程深度学习数据分析基础到实战最新黑马javaEE2.1就业课程从 0到JVM实战高手教程 MySQL入门到精通教程
查看: 307|回复: 0

[默认分类] 关于stack around the variable “” was corrupted问题

[复制链接]
  • TA的每日心情
    开心
    2021-12-13 21:45
  • 签到天数: 15 天

    [LV.4]偶尔看看III

    发表于 2018-5-23 13:51:55 | 显示全部楼层 |阅读模式
    错误:stack around the variable “XX” was corrupted.,中文翻译就是“在变量XX周围的堆栈已损坏”。后面在上网看了很多技术资料,发现大多数网站都有这样的文章:

      
      
       Code:
       
      
      
      把 project->配置属性->c/c++->代码生成->基本运行时检查 为 默认值 就不会报本异常。具体原因正在研究中。。。     
      如果改为其他就有exception。     
      exception有时是有道理的     
      // step 1   
      STRINGC2& STRINGC2::operator += (const char x)   
      {   
      // if (x == 0) return *this;     
      char ptr[1]; // max is 1 digit     
      ptr[0] = x;   
      ptr[1] = "/0";   
      *this += ptr; // off to step 2 and back     
      return *this; // step 4 crash   
      }   
      这个也会导致上述exception。     
         
      问题描述:     
      Problem   
          
      The following error message occurs when building on Test RealTIme environment with the cvisual7 TDP?     
      Run-Time Check Failure #2 - Stack around the variable "xxx" was corrupted.      
          
      Cause      
      Stack pointer corruption is caused writing outside the allocated buffer in stack memeory.     
          
      Solution     
      This kind of error is detected by setting /RTC1 compiler option from menu Project -> Settings -> Configuration properties -> Build -> Compiler -> Compiler flags when using TDP cvisual7 in IBM® Rational® Test RealTime environment.. This enables stack frame run-time error checking. For example, the following code may cause the above error messge.     
      #include <stdio.h>   
      #include <string.h>     
      #define BUFF_LEN 11 // 12 may fix the Run-Time Check Failure #2   
      int rtc_option_test(char * pStr);     
      int main()   
      {   
      char * myStr = "hello world";   
      rtc_option_test(myStr);   
      return 0;   
      }     
      int rtc_option_test(char * pStr)   
      {   
      char buff[BUFF_LEN];   
      strcpy(buff, pStr); //cause Run-Time Check Failure #2 - Stack around   
      //the variable "buff" was corrupted.   
      return 0;   
      }   
         


    把“project->配置属性->c/c++->代码生成->基本运行时检查 设置为默认值,就没有这样的错误了。关于MSDN的解释是在堆栈外面读写某数据。错误是名为RTC1的编译器检测的。又看了更多的技术文章,发现这样的错误是程序员在项目到了一定大的时候,它占用的堆栈量就比较大。我也深有体会。因为自己本来编写一个类,运行时没有错,但是在添加成员属性的时候,在其它方式不变的情况下就容易发生这样的错误。所以据此我猜应该是VS2005(2008)在内部就限定了堆栈的大小,当项目足够大的时候,就会溢出。
      
    以上是理论部分。
    #define BUFF_LEN 11 // 12 may fix the Run-Time Check Failure #2  
    问题原因在这里,存在字符越界。
    C
    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    QQ|手机版|Java学习者论坛 ( 声明:本站资料整理自互联网,用于Java学习者交流学习使用,对资料版权不负任何法律责任,若有侵权请及时联系客服屏蔽删除 )

    GMT+8, 2024-5-16 22:40 , Processed in 0.410769 second(s), 37 queries .

    Powered by Discuz! X3.4

    © 2001-2017 Comsenz Inc.

    快速回复 返回顶部 返回列表