gpt4 book ai didi

c++ - 模板和 for 循环的问题

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

我有这段代码,它给我一个指示两个问题的错误。

int healthyConst = 0;
int sickConst = 1;
int recoveredConst = 2;

GraphMatrix<int, double> graph (100);
for (int i = 0; i < sampleSize; i++)
{
if(std::rand() % 2 > 0.05) graph.setVertexInfo(i, sickConst); //Error
else graph.setVertexInfo(i, healthyConst);
}

错误是:

error: no matching function for call to GraphMatrix::setVertexInfo(int&, int*)

相关函数在源代码中声明如下:

void GraphMatrix::setVertexInfo(int v, VertexObject& info)

首先,我不应该是一个引用。这对我来说似乎很荒谬,但我无法解决这个问题。如果我试图智取编译器并键入 for(int* i = 0...) 错误现在会提示 setVertexInfo(int&*, int*),并且我甚至不明白这是什么意思。

其次,sickConst 不是指针。它只是一个整数。现在我意识到该方法,如所写,接受 VertexObject&,而不是 VertexObject,但是 *sickConst 也会导致编译器提示 invalid type argument of 'unary *'。我还尝试了 &sickConst,编译器不会意外地将其解释为指针。

另请注意,for 循环的第二行会抛出相同的错误,大概是出于相同的原因。

问题是:为什么会出现这些错误,我该如何解决?

最佳答案

您声明您在源代码中的函数声明如下:

void GraphMatrix::setVertexInfo(int v, VertexObject& info)

但是在您的 for 循环中,您向它传递了一种 int 类型。要么更改您的函数声明和定义以接受 int 类型,要么更改您作为 VertexObject 传递给函数的类型。

关于c++ - 模板和 for 循环的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43904378/

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