2

これが私のコードです。C ++を使用して構成ファイルを読みたいのですが、私のコードは次のとおりです。

//myutils.h

#include <string>
#include <map>
using namespace std;

void print(pair<string,string> &p);

void read_login_data(char *login_data,map<string,string> &data_map); 

ここに myutils.cpp があります

//myutils.cpp
#include <fstream>
#include <string>
#include <map>
#include "myutils.h"

using namespace std;

void print(pair<string,string> &p)
{
        cout<<p.second<<endl;
}


void read_login_data(char *login_data,map<string,string> &data_map)
{
    ifstream infile;
    string config_line;
    infile.open(login_data);
    if (!infile.is_open())
    {
        cout << "can not open login_data";
        return false;

    }
    stringstream sem;
    sem << infile.rdbuf();
    while(true)
    {
        sem >> config_line;
        while(config_line)
        {
            size_t pos = config_line.find('=');
            if(pos == npos) continue;
            string key = config_line.substr(0,pos);
            string value = config_line.substr(pos+1);
            data_map[key]=value;

        }
    }


}

そして私のtest.cppコード:

#include <iostream>
#include <map>
#include "myutils.h"

using namespace std;

int main()
{
    char login[] = "login.ini";
    map <string,string> data_map;

    read_login_data(login,data_map);
    for_each(data_map.begin(),data_map.end(),print);

    //cout<< data_map["BROKER_ID"]<<endl;

}

設定ファイルは次のとおりです。

BROKER_ID=66666
INVESTOR_ID=00017001033

:g++ -o test test.cpp myutils.cpp を使用してコンパイルすると、出力は次のようになります。

young001@server6:~/ctp/ctp_github/trader/src$ g++ -o test test.cpp myutils.cpp
In file included from /usr/include/c++/4.6/algorithm:63:0,
                 from test.cpp:3:
/usr/include/c++/4.6/bits/stl_algo.h: In function ‘_Funct std::for_each(_IIter, _IIter, _Funct) [with _IIter = std::_Rb_tree_iterator<std::pair<const std::basic_string<char>, std::basic_string<char> > >, _Funct = void (*)(std::pair<std::basic_string<char>, std::basic_string<char> >&)]’:
test.cpp:15:48:   instantiated from here
/usr/include/c++/4.6/bits/stl_algo.h:4379:2: error: invalid initialization of reference of type ‘std::pair<std::basic_string<char>, std::basic_string<char> >&’ from expression of type ‘std::pair<const std::basic_string<char>, std::basic_string<char> >’

ペア<>の参照についてのようですが、動作するように変更するにはどうすればよいですか?

4

1 に答える 1