gpt4 book ai didi

c++ - 错误: no matching function for call to (unsolvable?)

转载 作者:行者123 更新时间:2023-12-02 11:08:58 25 4
gpt4 key购买 nike

我是C++初学者。我正在尝试使用结构名称作为模板参数实例化一个类的三个数组。从那里,我想循环并调用mutator函数以设置数组中的值。

int main()
{
GenericRecord<Furniture> furnObj[10][3];
GenericRecord<Building> buildObj[10][3];
GenericRecord<Computer> compObj[10][3];

Building b;
Furniture f;
Computer c;

for (int i = 0; i < 3; i++)
{
cout << "Enter the identifier for the furniture: ";
cin >> f.Identifier;
furnObj[i][0].setRecord(f.Identifier);
}
return 0;
}

我不断收到编译器错误,如下所示:

error: no matching function for call to 'GenericRecord<Furniture>::setRecord(int&)'
note: candidate is:
note: void GenericRecord<Type>::setRecord(Type) [with Type = Furniture]



我试图通过100种不同的方式进行改编,并且不断出现各种编译器错误。我究竟做错了什么?

这是模板类,成员和结构:
struct Furniture
{
int Identifier;
string Description;
float Value;
};

template <class Type>
class GenericRecord
{
private:
Type record;
public:
void setRecord(Type recParam);
};

template<class Type>
void GenericRecord<Type>::setRecord(Type recParam)
{
record = recParam;
}

最佳答案

(如果您是C++初学者,我认为您不应该直接进入模板,但是无论如何...)

GenericRecord<Furniture> furnObj[10][3];

这将创建一个 GenericRecord对象数组,其中Type = Furniture。由于类型=家具,这意味着 setRecord(Type recParam)期望接收一个家具对象。

但是您正在使用 setRecord()调用 f.Identifier,这是一个整数。这就是问题的原因。

关于c++ - 错误: no matching function for call to (unsolvable?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47148169/

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