传递具有可变大小的 2D 数组

Passing 2D array with variable Size

本文关键字:2D 数组      更新时间:2023-10-16

>我正在尝试将 2D 数组从一个函数传递到另一个函数。但是,数组的大小不是恒定的。大小由用户确定。

我试图研究这个,但没有太多的运气。大多数代码和解释都是针对数组的常量大小的。

在我的函数A中,我声明了变量,然后对其进行了一点操作,然后必须将其传递给函数B

void A()
{
      int n;
      cout << "What is the size?: ";
      cin >> n;
      int Arr[n-1][n];
      //Arr gets manipulated here
      B(n, Arr);
}
void B(int n, int Arr[][])
{
    //printing out Arr and other things
}

如果需要动态大小的数组,请使用std::vector

std::vector<std::vector<int>> Arr(n, std::vector<int>(n - 1));
B(Arr);
void B(std::vector<std::vector<int>> const& Arr) { … }

数组大小需要恒定。或者,您可以使用std::vector<std::vector<int>>来表示动态 2D 数组。

C++不支持

可变长度数组。使用 C99 并仅编译为 C,您可以像这样传递数组:

#include <stdio.h>
void B(int rows, int columns, int Arr[rows][columns]) {
    printf("rows: %d, columns: %dn", rows, columns);
}
void A() {
    int n = 3;
    int Arr[n-1][n];
    B(n-1, n, Arr);
}

int main()
{
    A();
    return 0;
}

注意:在函数周围放置外部"C"{ }不会解决C++ 与 C99 不兼容:

  g++ (Ubuntu/Linaro 4.7.2-2ubuntu1) 4.7.2:
  error: use of parameter ‘rows’ outside function body
  error: use of parameter ‘columns’ outside function body
  warning: ISO C++ forbids variable length array