gpt4 book ai didi

c++ - 谁能帮我弄清楚为什么我的 lValue 总是出错

转载 作者:行者123 更新时间:2023-11-27 23:42:38 31 4
gpt4 key购买 nike

谁能帮我弄清楚为什么我在最内层的循环程序中总是出错 * 突出显示它必须是一个可修改的 lValue。

using namespace std;
#include <iostream>


int main()
{


//Part I
int DIM1 = 200;
int DIM2 = 400;
int DIM3 = 200;

const int DIMM1 = 200;
const int DIMM2 = 400;
const int DIMM3 = 200;


myTimer st;


st.start();
int a[DIMM1][DIMM2][DIMM3];
for (int i = 0; i < DIM1; i++) {
for (int j = 0; j < DIM2; j++) {
for (int k = 0; k < DIM3; k++) {
a[i][j][k] = i + j + k;
}
}
}
st.stop();
st.time();
cout << time << endl;


st.start();
//int *a;
int * a = new int[DIM1*DIM2*DIM3];
for (int i = 0; i < DIM1; i++)
for (int j = 0; j < DIM2; j++)
for (int k = 0; k < DIM3; k++)
*(a + (i*DIM2*DIM3) +
j * DIM3 + k) = i + j + k;

st.stop();
st.time();
cout << time << endl;



st.start();
int a[DIMM1][DIMM2][DIMM3];
for (int k = 0; k < DIM3; k++)
for (int j = 0; j < DIM2; j++)
for (int i = 0; i < DIM1; i++)
a[i][j][k] = i + j + k;
st.stop();
st.time();
cout << time << endl;


st.start();
//int *a;
int * a = new int[DIM1*DIM2*DIM3];
for (int k = 0; k < DIM3; k++)
for (int j = 0; j < DIM2; j++)
for (int i = 0; i < DIM1; i++)
*(a + (i*DIM2*DIM3) +
j * DIM3 + k) = i + j + k;
st.stop();
st.time();
cout << time << endl;



return 0;
}

错误是:

Severity  Code    Description Project File    Line    Suppression State
Error C2372 'a': redefinition; different types of indirection
Error C3863 array type 'int [400][200]' is not assignable
Error C2086 'int a[200][400][200]': redefinition
Error C2372 'a': redefinition; different types of indirection
Error C3863 array type 'int [400][200]' is not assignable
Error (active) E0137 expression must be a modifiable lvalue

最佳答案

查看 C++ 编译器错误时,您需要先查看第一个错误。其他的很可能是由第一个引起的。

在这种情况下,您在同一范围内声明了许多名为 a 的变量。当您重新声明 a 时,编译器会引发错误:

'a': redefinition; different types of indirection

然后它忽略此声明并尝试继续编译文件的其余部分,这会导致后续错误,因为变量类型不是您所期望的(编译器正在处理 a 的所有实例在这个文件中作为一个数组)。

您要么需要为每个变量使用不同的名称,要么将变量包含在单独的范围内。例如,其中任何一个都是有效的:

int a;
// do stuff with a
int b[10];
// do stuff with b

或:

{
int a;
// do stuff with a
}
// int a no longer exists
{
int a[10];
// do stuff with a
}

关于c++ - 谁能帮我弄清楚为什么我的 lValue 总是出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53328568/

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