gpt4 book ai didi

使用二维数组作为参数时,C++ 编译器错误 : "No matching function for call",

转载 作者:太空宇宙 更新时间:2023-11-04 13:46:04 24 4
gpt4 key购买 nike

我正在尝试从我的 main.cpp 中调用一个单独的 .cpp 文件中的函数(称为 closestPair),使用 [5][10] 二维数组作为参数。

电话:

extern const unsigned int vSize = 10;

[...]

double input[5][10] = {{0.595500, 0.652927, 0.606763, 0.162761, 0.980752, 0.964772, 0.319322, 0.611325, 0.012422, 0.393489},
{0.416132, 0.778858, 0.909609, 0.094812, 0.380586, 0.512309, 0.638184, 0.753504, 0.465674, 0.674607},
{0.183963, 0.933146, 0.476773, 0.086125, 0.566566, 0.728107, 0.837345, 0.885175, 0.600559, 0.142238},
{0.086523, 0.025236, 0.252289, 0.089437, 0.382081, 0.420934, 0.038498, 0.626125, 0.468158, 0.247754},
{0.969345, 0.127753, 0.736213, 0.264992, 0.518971, 0.216767, 0.390992, 0.242241, 0.516135, 0.990155}};
closestPair(input);

标题:

#include <iostream>

extern const unsigned int vSize;
double vectDistance (double a[], double b[]);
void closestPair(double bag[][vSize]);

#endif /* defined(__Cpp_Lab2__name1__) */

函数:

void closestPair(double bag[][vSize]){
[...]
}

错误:

No matching function for call to 'closestPair'

我认为输入二维数组中的某些内容似乎与函数的参数列表冲突,但我不确定问题出在哪里。我到处都检查过了,这可能是我遗漏的一些愚蠢的东西。我该如何解决?

最佳答案

你应该使用:

const unsigned int vSize = 10;

在两个文件中。

这将确保 closestPair 的输入类型是 double (*)[10] 而不是 double (*)[vSize].

关于使用二维数组作为参数时,C++ 编译器错误 : "No matching function for call",,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25919783/

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