map::erase (STL/CLR)
指定した位置にある要素を削除します。
iterator erase(iterator where);
iterator erase(iterator first, iterator last);
bool erase(key_type key)
パラメーター
まず
消去する範囲の先頭。key
消去するキー値。last
消去する範囲の最後。where
消去する要素。
解説
一つ目のメンバー関数は、そのような要素が存在しない場合 whereが指す被制御シーケンスの要素を削除し、削除した要素を超えていない最初の要素を指定するか、 map::end (STL/CLR)() 反復子を返します。一つの要素を削除するときに使用します。
2 番目のメンバー関数は、そのような要素が存在しない場合 [範囲first,last)の被制御シーケンスの要素を削除し、削除された要素を超えていない最初の要素を指定するか、 end() 反復子を返します。ゼロ使用して以上の連続する要素を削除するためにも。
3 番目のメンバー関数は、キーに keyに同じ大小関係がある削除し、削除した要素の数の数を返します。被制御シーケンスの要素が。指定したキーに一致するすべての要素を削除し、カウントに使用されます。
各要素の削除は、被制御シーケンスの要素の数の対数に比例した時間がかかります。
使用例
// cliext_map_erase.cpp
// compile with: /clr
#include <cliext/map>
typedef cliext::map<wchar_t, int> Mymap;
int main()
{
cliext::map<wchar_t, int> c1;
c1.insert(cliext::map<wchar_t, int>::make_value(L'a', 1));
c1.insert(cliext::map<wchar_t, int>::make_value(L'b', 2));
c1.insert(cliext::map<wchar_t, int>::make_value(L'c', 3));
// display contents " [a 1] [b 2] [c 3]"
for each (cliext::map<wchar_t, int>::value_type elem in c1)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
// erase an element and reinspect
cliext::map<wchar_t, int>::iterator it =
c1.erase(c1.begin());
System::Console::WriteLine("erase(begin()) = [{0} {1}]",
it->first, it->second);
// add elements and display " b c d e"
c1.insert(cliext::map<wchar_t, int>::make_value(L'd', 4));
c1.insert(cliext::map<wchar_t, int>::make_value(L'e', 5));
for each (cliext::map<wchar_t, int>::value_type elem in c1)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
// erase all but end
it = c1.end();
it = c1.erase(c1.begin(), --it);
System::Console::WriteLine("erase(begin(), end()-1) = [{0} {1}]",
it->first, it->second);
System::Console::WriteLine("size() = {0}", c1.size());
// erase end
System::Console::WriteLine("erase(L'x') = {0}", c1.erase(L'x'));
System::Console::WriteLine("erase(L'e') = {0}", c1.erase(L'e'));
return (0);
}
必要条件
ヘッダー: <cliext/マップ>
名前空間: の cliext