gpt4 book ai didi

c++ - C++ 构造函数中无法解释的调用

转载 作者:搜寻专家 更新时间:2023-10-31 00:14:40 27 4
gpt4 key购买 nike

我有一个类的构造函数:

10  REGION::REGION(const COORD &Default)
11 {
12 CELL temp(Default);
13 for(int x=0;x<100;++x)
14 interior[x]=temp;
15 Align();
16 }

当我尝试编译它时,我得到这个错误:

Map.cpp: In constructor 'REGION::REGION(const COORD&)':
Map.cpp:10:36: error: no matching function for call to 'CELL::CELL()'
Map.cpp:10:36: note: candidates are:
Map.h:19:4: note: CELL::CELL(const COORD&)
Map.h:19:4: note: candidate expects 1 argument, 0 provided
Map.h:16:7: note: CELL::CELL(const CELL&)
Map.h:16:7: note: candidate expects 1 argument, 0 provided

我被难住了。我猜,由于错误位于第 10 行的 default 和 ) 之间,所以错误实际上是在第 12 行。然而,第 12 行应该是对 CELL::CELL(const COORD&) 的调用,因为 Default 是输入坐标。为什么调用默认构造函数?我没有定义默认构造函数,但我无法想象它与这种情况有什么关系。

编辑:这是区域类。那么我认为问题出在内部?

class REGION
{
public:
REGION(const COORD&);
void Align();
void MAlign();
int x,
y;
CELL interior[100];
};

最佳答案

interior 的类型是什么?

如果它是一个数组,那么在开始执行 REGION 构造函数代码之前,编译器必须能够使用默认构造函数创建所有元素。

关于c++ - C++ 构造函数中无法解释的调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22323823/

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