gpt4 book ai didi

c++ - 将任意大小的数组传递给 C++ 函数

转载 作者:行者123 更新时间:2023-11-28 00:01:49 25 4
gpt4 key购买 nike

我知道您可以通过其他方式传递数组,例如:

returnType functionName (dataType array[][10])

但我对您事先不知道数组大小的情况很感兴趣。我希望能够将行数和列数作为参数传递。

如何将任意大小的数组传递给 C++ 函数?我想按照以下方式做一些事情:

void functionName(dataType array[][], int num_rows, int num_cols){
// ***Some operation such as printing the array's contents***
}

最佳答案

有以下三种方法:

  1. 您将指针传递给以行和列大小作为参数的第一个元素。
  2. 如果数组大小在编译时已知,您可以使用模板。像这样的东西:

template <std::size_t W, std::size_t H> void func(Type (&array)[W][H]) {}

  1. 您使用二维 vector 并将其传递给函数。但是,如果您不需要调整单独列的大小,它的效率就不会那么高。

关于c++ - 将任意大小的数组传递给 C++ 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38381645/

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