简体   繁体   中英

conversion from std::map<std::basic_string<char>,std::pair<int,int(*)(const std::vector::Mat

I have defined new type:

typedef int(* func) (const std::vector<cv::Mat>&, cv::Mat&);

Then I did class member:

std::map< std::string, std::pair<int,func> > functions;

In function, in first line:

pair<funcId,func> functionSet::getRandomFunction() const
{
    map<string, pair<int,func>>::iterator it = functions.begin();
    std::advance(it, functions.size());

    string name = it->first;
    func function = it->second.second;
    int argumentsNumber = it->second.first;
    funcId id = make_pair(argumentsNumber,name);

    pair<funcId,func> p = make_pair(id,function);

    return p;
}

I got this error:

error: conversion from 'std::map, std::pair&, cv::Mat&)> > ::const_iterator {aka std::_Rb_tree_const_iterator, std::pair&, cv::Mat&)> > >}' to non-scalar type 'std::map, std::pair&, cv::Mat&)> >::iterator {aka std::_Rb_tree_iterator, std::pair&, cv::Mat&)> > >}' requested map>::iterator it = functions.begin();

Your method marked as const, and so this has type const functionSet* . Change you first line:

map<string, pair<int,func>>::const_iterator it = functions.begin();

or if your compiler supports C++11 standard:

auto it = functions.cbegin();

Look at the output again:

conversion from
'std::map, std::pair&, cv::Mat&)> >::const_iterator {...}'
to non-scalar type
'std::map, std::pair&, cv::Mat&)> >::iterator {...}'

So it seems that functions is a const map, its begin() returns a const iterator, and it cannot be converted into a normal iterator.

The reason it is constant because because getRandomFunction is a constant member function and therefore it can see the class members as constants.

As you do not modify the map, simply using const_iterator should solve the problem:

map<string, pair<int,func>>::const_iterator it = functions.begin();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM