gpt4 book ai didi

c++ - 长双二维动态数组C++

转载 作者:行者123 更新时间:2023-12-02 11:15:03 25 4
gpt4 key购买 nike

错误:数组下标无效的类型'long double ** [long double]'

long double** make2darray(long int V)

{

long double **array2,i;
array2 = (long double**) malloc (V*sizeof(long double*));
for(i=0;i<V;i++)
{
array2[i] = (long double*) malloc (V*sizeof(long double));
}
return array2;

}

但是,如果我将数据类型更改为long int,则可以正常运行吗?不明白以这种方式制作二维动态长 double 数组有什么问题吗?

最佳答案

数组中的索引必须始终具有整数类型,您需要将声明更改为:

long double **array2;
size_t i;

C11标准(N1570)

6.5.2.1 Array subscripting (Contraints)

  1. One of the expressions shall have type ‘‘pointer to complete object type’’, the other expression shall have integer type, and the result has type ‘‘type’’.


同样在C++中,最好分别对可变长度或恒定长度数组使用 std::vectorstd::array

关于c++ - 长双二维动态数组C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24490060/

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