错误:没有匹配的呼叫功能

时间:2013-03-11 05:35:49

标签: c++

任何人都可以帮我解决这个问题。我有一个类Comm,它将另一个类Info的元素存储在它的地图容器中:

    #include<map>
using namespace std;
class En
{

};

class Info
{
public:
    const En * en;
    bool read;
    bool write;
    bool done;
    Info(
            En * en_,
            bool read_,
            bool write_,
            bool done_
            )
    :
        en(en_),
        read(read_),
        write(write_),
        done(done_)
    {}

    Info(const Info& info_)
    :
        en(info_.en),
        read(info_.read),
        write(info_.write),
        done(info_.done)
    {}


};

class Comm
{
    std::map<const En*,Info> subscriptionList;
public:
void  subscribeEn(Info value)
{
    //none of the below works
//  subscriptionList[value.en] = Info(value);
    subscriptionList[value.en] = value;
}
};


int main()
{

//  En * en;
//  bool read;
//  bool write;
//  bool Done;
//  Comm comm;
//  Info Info_(en,read,write,Done);
//  comm.subscribeEn(Info_);
//  return 1;

}

但是我在编译中遇到以下错误:

In file included from /usr/include/c++/4.7/map:61:0,
                 from test.cpp:1:
/usr/include/c++/4.7/bits/stl_map.h: In instantiation of ‘std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type& std::map<_Key, _Tp, _Compare, _Alloc>::operator[](const key_type&) [with _Key = const En*; _Tp = Info; _Compare = std::less<const En*>; _Alloc = std::allocator<std::pair<const En* const, Info> >; std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type = Info; std::map<_Key, _Tp, _Compare, _Alloc>::key_type = const En*]’:
test.cpp:47:27:   required from here
/usr/include/c++/4.7/bits/stl_map.h:458:11: error: no matching function for call to ‘Info::Info()’
/usr/include/c++/4.7/bits/stl_map.h:458:11: note: candidates are:
test.cpp:28:2: note: Info::Info(const Info&)
test.cpp:28:2: note:   candidate expects 1 argument, 0 provided
test.cpp:15:2: note: Info::Info(En*, bool, bool, bool)
test.cpp:15:2: note:   candidate expects 4 arguments, 0 provided

如果你让我知道为什么我得到这个以及如何解决它,我感激不尽。 谢谢

2 个答案:

答案 0 :(得分:5)

我相信,问题就在这里:

class Comm
{
    std::map<const En*,Info> subscriptionList;
public:
    void  subscribeEn(Info value)
    {
        //none of the below works
        //  subscriptionList[value.en] = Info(value);
        subscriptionList[value.en] = value;
    }
};

我想,std::map首先使用const En*Info实例化一对,然后对该对的字段进行分配。您没有为Info提供无参数构造函数,这就是编译器抱怨的原因。

您可以通过在Info类中添加以下内容来解决此问题:

// Default, parameterless constructor
Info()
{
    // Some default values
    en = NULL; // or nullptr in C++11
    read = false;
    write = false;
    done = false;
}

另一种解决方案是更改std :: map的定义,使其包含指向Info而不是其实例的指针:

std::map<const En *,Info *> subscriptionList;

答案 1 :(得分:2)

done的大写不正确:

bool Done;
Info Info_(en,read,write,done);

通常,小写或camelCase用于变量名称。