gpt4 book ai didi

C++ 编译器错误 : passing pointers but compiler sees references

转载 作者:行者123 更新时间:2023-11-30 02:52:44 27 4
gpt4 key购买 nike

下面是类中的方法签名。

virtual void evaluate(const double *var, double *obj, double *constr) const = 0;

virtual void evaluate(unsigned int numPoints, const double **var, double **obj, double **constr) const {
//do something
}

这里是参数声明

unsigned int size;
double **var = new double*[size];
double **obj = new double*[size];
double **constr = new double*[size];

这里是方法调用。

evaluator.evaluate(size, var, obj, constr);

我收到以下编译器错误。

foo.cpp: In member function âvoid foo::evaluatePopulation(std::vector<Individual, std::allocator<Individual> >&, unsigned int, bool)â:
foo.cpp:347: error: no matching function for call to foo::evaluate(unsigned int&, double**&, double**&, double**&) constâ
foo.h:35: note: candidates are: virtual void foo::evaluate(const double*, double*, double*) const
foo.h:43: note: virtual void foo::evaluate(unsigned int, const double**, double**, double**) const <near match>

foo 是类名。我正在使用双指针(两个星号)。如何解决此错误?

最佳答案

在您的第二个签名中,第二个形式参数var 的类型是const double**。实际参数 constrdouble** 类型的 hovewer,不能隐式转换为前一种类型。

示例

#include <stdio.h>

void fn(const int** pp)
{
printf("%p : %p : %d", pp, *pp, **pp);
}

int main()
{
int n = 1;
int *p = &n;
fn(&p); // ERROR. see below
return 0;
}

报告的错误是准确的:

main.c:17:8: Passing 'int **' to parameter of type 'const int **' discards qualifiers in nested pointer types.

关于C++ 编译器错误 : passing pointers but compiler sees references,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18641010/

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