我正在尝试获取向量中元素的索引strings
,以将其用作另一个int
类型向量中的索引,这可能吗?
例子:
vector <string> Names;
vector <int> Numbers;
...
// condition to check whether the name exists or not
if((find(Names.begin(), Names.end(), old_name_)) != Names.end())
{ // if yes
cout <<"Enter the new name."<< endl;
cin >> name;
replace(Names.begin(), Names.end(), old_name_, name);
}
现在我想获取向量中的位置old_name
,Names
以使用它来访问Numbers
向量中的某些元素。所以我可以说:
Numbers[position] = 3 ; // or whatever value assigned here.
我尝试使用:
vector <string> :: const_iterator pos;
pos = (find(Names.begin(), Names.end(), old_name_))
Numbers[pos] = 3;
但显然这不起作用,因为pos
它是字符串类型!