关于“access violation”出错的问题,望高人指点,谢谢!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于“access violation”出错的问题,望高人指点,谢谢!相关的知识,希望对你有一定的参考价值。
打开公司网站后,出现“参考信息:access violation at address 04c60005.write of address 76b12dd3”
我知道是在电脑—属性——性能——数据执行保护里添加,但我不知道这串参考信息所指的软件是什么
请帮帮我解决这个问题,谢谢。
或是能告诉我如何查找出这个错误的原始地方,谢谢
内存访问越界什么的问题~~
1、25600 0000个数据float类型
算一下空间,一次性分配 256000000 * sizeof(float) Byte 约等于 1GB
加上a、b的空间,也就是2GB。
2、操作系统分配给应用程序的空间
有一部分地址空间被系统占用,应用程序无法使用,所以实际用户程序的程序空间大概是两个多GB,估摸着你什么地方还有其他的东西?所以一不小心就超过了这个上限。
3、解决办法
使用磁盘的空间,对数据进行分批处理,最后把结果合并(当然是依次写入文件)。本回答被提问者采纳
Visual Studio 2019程序运行出现‘Access violation reading location‘的问题
文章目录
小结
在Visual Studio 2019的C++程序调试运行中出现’Access violation reading location’的问题,Unhandled exception at 0xxxxxxxxx (xxxx.dll) in xxxx.exe: 0xxxxxxxxx: Access violation reading location 0xxxxxxxxxx
,进行了解决。
问题及解决
在Visual Studio 2019的C++工程,编译是没有问题的,但是在程序调试运行时经常会出现’Access violation reading location’的问题,经过调试跟踪后,发现是由于变量被多个代码段访问到,可能出现了空指针的情况。这种错误也不是每次都发生,所以比较难找到原因和追踪到。具体原因可能是所访问的变量已经被其它部分代码改动了,具体建议如下:
Then verify that the values are not being unintentionally changed somewhere in the program by creating a Data Breakpoint for the pointer in question to make sure it isn’t being modified elsewhere in the program.
使用以下两个办法可以大大减少此类问题的发生。
方法一
在有可能发生变量使用冲突的地方加上try ... catch (std::exception ex)
来捕捉这个异常,异常被捕捉到后程序是可以接着运行的,不会出现退出的情况:
try
...
catch (std::exception ex)
std::cout << "Exception happened! " << ex.what() .
方法二
减少多段代码访问同一个变量的情况,我将没有必要的修改冲突变量的地方进行了注释删除。经过多次调试测试,没有再发生Access violation reading location
的问题。
Unexpected end of file error
Unexpected end of file error
这个问题的出现可以通过配置工程文件属性进行解决: 工程性性 -> C/C++ -> Precompiled Headers ->Create/Use Precompiled Header选择Not Using Precompiled Headers
.
vs2019 debug 出现: printf is ambiguous
printf is ambiguous
这个问题的解决比较奇怪:在代码中添加using namespace std;
,保存,问题消失,如果不行,删除using namespace std;
,保存,添加,保存,也就是再来一遍同样的操作。
using namespace std;
参考
Code Project: Access violation reading location
Stackoverflow: Catching access violation exceptions?
Microsoft Doc: Structured Exception Handling (C/C++)
Microsoft Doc: How Can I Debug an Access Violation?
Stackoverflow: Unexpected end of file error
vs2019 debug 出现: printf is ambiguous
以上是关于关于“access violation”出错的问题,望高人指点,谢谢!的主要内容,如果未能解决你的问题,请参考以下文章
Internal Exception: access violation in module ‘SPICEINP.DLL‘ [000007F9].解决办法
0xC0000005;Access Violation(栈区空间很宝贵, linux上栈区空间默认为8M,vc6下默认栈空间大小为1M)
Access violation at address 怎么办