誰かが私の問題を解決するのを手伝ってくれることを願っていました。私は素敵な
タイプ「const pCompare」のオブジェクトの呼び出しに一致する関数がありません
struct pCompare
{
bool operator()( const std::string & str1, const std::string & str2 ) const
{
return str1.compare( str2 ) == 0;
}
};
std::string *t = new std::string ( "/test.html" );
std::map<std::string*, std::string, pCompare> test;
test.insert ( std::pair<std::string*, std::string> ( t, "héhé" ) );
std::cout << test.find(new std::string ("/test.html") )->second;
ご協力いただきありがとうございます !