VS2010で次のコードをコンパイルしようとしたときにエラーC2678が表示されました。map <string、string> in class
#include <string>
#include <map>
using namespace std;
class test
{
private:
map<string, string> data;
public:
test(){};
~test(){};
public:
const string & get(const string & key)const{return data[key];}; //error C2678
bool set(const string & key, const string & value){data[key]=value;return true;};
};
void main()
{
const string key="Hello world!";
const string value="I'm coming!";
test t;
t.set(key,value);
t.get(key);
}
しかし、私はそれをコンパイルして実行しない
#include <string>
#include <map>
using namespace std;
bool set(const string & key, const string & value, map<string, string> & data)
{
data[key]=value;
return true;
}
const string & get(const string & key, map<string, string> & data)
{
return data[key];
}
void main()
{
const string key="Hello world!";
const string value="I'm coming!";
map<string, string> data;
set(key, value, data);
get(key;
}
のような関数としてそれを残します。
誰が問題について知っていますか?
今後、番号だけでなくエラーテキストも貼り付けてください。 –