我刚刚开始使用一些C ++(即JAVA的10年后!)。我正在关注Stroupstrup书中的例子。
我将他的书中的以下代码段放在一起。
#include <iostream>
#include <map>
#include <string>
#include <iterator>
using namespace std;
map<string, int>histogram;
void record (const string &s)
{
histogram[s]++; //record frequency of "s"
cout<<"recorded:"<<s<<" occurence = "<<histogram[s]<<"\n";
}
void print (const pair<const string, int>& r)
{
cout<<r.first<<' '<<r.second<<'\n';
}
bool gt_42(const pair<const string, int>& r)
{
return r.second>42;
}
void f(map<string, int>& m)
{
typedef map<string, int>::const_iterator MI;
MI i = find_if(m.begin(), m.end(), gt_42);
cout<<i->first<<' '<<i->second;
}
int main () {
istream_iterator<string> ii(cin);
istream_iterator<string> eos;
cout<<"input end\n";
for_each(ii, eos, record);
//typedef pair <string, int> String_Int_Pair;
//histogram.insert(String_Int_Pair("42", 1));
//histogram.insert(String_Int_Pair("44", 1));
//for_each(histogram.begin(), histogram.end(), print);
f(histogram);
}
我收到错误 - 例外:STATUS_ACCESS_VIOLATION,我认为在引用i-&gt;首先,i-&gt;秒,我想。有人可以帮助我找出问题所在。此外,如果您可以建议一些有用的替代C ++论坛。
答案 0 :(得分:3)
在void f(map<string, int>& m)
函数中,您不会检查您是否确实找到了您要查找的元素,.e.g:
void f(map<string, int>& m)
{
typedef map<string, int>::const_iterator MI;
MI i = find_if(m.begin(), m.end(), gt_42);
if(i != m.end())
cout<<i->first<<' '<<i->second;
else
cout << "Not Found" << endl;
}
当您i->first
点“越过地图容器的结尾”时访问i
时,可能会发生错误。