gpt4 book ai didi

c++ - 使用 fprintf 获取访问冲突写入位置 0x00000014

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:18:09 25 4
gpt4 key购买 nike

我在 Visual Studio 2010 上工作。该程序本身最初是为 CUDA 的 future 端口设计的,所以一切都准备好了,但现在我只是测试它是否适用于纯 C++(实际上我现在正尝试坚持使用 c,因为我对它更熟悉)。

相关代码为:

#define NMBR_EXP_ENERGIES 21
#define NMBR_Ls 3
#define NMBR_POINTS 20000

<Emin, Emax, dE are initialized as global constants>
int NMBR_EXP_ENERGIES_L[NMBR_Ls];

<Some functions>

void write_results(double ** u, int * NmbrNodes, int * div){
const char prefix[] = "wave_function_";
char filename[24];
double *eigenergies;
int div0,i,j,k,l,m;
FILE *file_u;
FILE *file_output;

eigenergies = (double *)malloc(NMBR_EXP_ENERGIES*sizeof(double));
j=0;
m=0;
file_output = fopen("computation_results.out","w");
fprintf(file_output,"This file contains the output\n");


for(l=0;l<NMBR_Ls;l++){
div0=div[l*NMBR_ENERGIES];
for(i = l*NMBR_ENERGIES;i<NMBR_ENERGIES*(l+1);i++){
if (div[i] != div0 && m<NMBR_EXP_ENERGIES_L[l]){
div0=div[i];
j++;
m++;
eigenergies[j-1] = (Emin+((double) (i-l*NMBR_ENERGIES))*dE)-dE/2.0;
fprintf(file_output,"The eigenergy %d is %1.15lf and the wavefunction has %d nodes\n",j,eigenergies[j-1],NmbrNodes[i]);
sprintf(filename,"%d_%s%d.out",l,prefix,j);
file_u = fopen(filename,"w");
for(k=0;k<NMBR_POINTS;k++){
fprintf(file_u,"%lf %1.15lf \n",k*RMAX/NMBR_POINTS,u[i][k]);
}
fclose(file_u);
}
}
if (j < NMBR_EXP_ENERGIES_L[l]){
j = NMBR_EXP_ENERGIES_L[l];
}
m=0;
}
fprintf(file_output,"R = %1.15lf\n ",error_control(eigenergies));
fprintf(file_output,"%d eigenergies were found\nIts eigenfunctions were stored on the file %sj.out, 1<j<%d",j,prefix,j);
fclose(file_output);
free(eigenergies);
}

<Some functions>

int main(void){

<Code that executes the computation and stores it on u[i][j],NmbrNodes[i] and div[i]>

write_results(u, NmbrNodes, div);

}

vector div 之前根据需要填充了 1 和 -1。当 l = 0 和 l = 1 时,程序运行良好。然而,当他最后一次启动外循环 (l = 2) 并第二次进入 if 时,它在 fprintf(file_output,"The eigenergy %d is %1.15lf and the wavefunction有 %d 个节点\n",j,eigenergies[j-1],NmbrNodes[i]);。错误信息是

First-chance exception at 0x77dd3ea0 in Potential_Model_Numerov.exe: 0xC0000005: Access violation writing location 0x00000014.
Unhandled exception at 0x77dd3ea0 in Potential_Model_Numerov.exe: 0xC0000005: Access violation writing location 0x00000014.

选择打破程序时,它会在函数末尾打开mlock.c文件 void __cdecl _lock

我已经检查过我没有读取超出其分配空间的任何 vector (特征能量一直持续到特征能量 [20] 和 j = 17,当这种情况发生时 NmbrNodes 一直持续到 NmbrNodes [3071] 并且 i = 3009 在崩溃的瞬间)。所以我不知道他为什么要尝试读取一个被禁止的内存地址。有人知道吗?

谢谢!

旁注:我有另一个功能,它做的事情基本相同,但没有向硬盘驱动器写入任何内容,而这个功能运行得很好。此外,有时它会打开文件 osfinfo.c 而不是 mlock.c,并在函数 int __cdecl __lock_fhandle 结束时停止。

最佳答案

你确定 eigenenergies 不是 NULL 吗?您永远不会检查 malloc() 的返回值。

鉴于您在地址 0x00000014 处遇到访问冲突,并且您声称

eigenergies goes until eigenergies[20]

这将是我的第一个猜测。请注意,0x14 等于 20

您可能想跳过 malloc()ing 并只使用 double eigenenergies[NMBR_EXP_ENERGIES]

关于c++ - 使用 fprintf 获取访问冲突写入位置 0x00000014,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18662033/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com