“No matching function call” in constructor

主宰稳场 提交于 2019-11-27 23:52:40

问题


This is the constructor declaration that I have in my "solver.h" file.

Solver(const Board &board_c, int max_moves_c);

When trying to compile I get the following error...

solver.cpp: In constructor 'Solver::Solver(const Board&, int)':
solver.cpp:6:55: error: no matching function for call to 'Board::Board()'
  Solver::Solver(const Board &board_c, int max_moves_c)

And then it lists the candidates which are the Board constructors.

I'm not sure what I'm doing wrong as I see no reason why I should be getting this error.

I am compiling with g++.


回答1:


error: no matching function for call to 'Board::Board()'

means that class Board is missing the deafault constructor. In the constructor of Solver you are probably doing something like:

Solver::Solver(const Board &board_c, int max_moves_c) {
    Board b; // <--- can not construct b because constructor is missing
    ...
}

so you either have to define the default constructor or invoke the appropriate constructor with some arguments.

"And then it lists the candidates which are the Board constructors."

That's because compiler wants to help you so it lists possible constructors that are actually available (defined).



来源:https://stackoverflow.com/questions/19524100/no-matching-function-call-in-constructor

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!