1
有可能包裹boost::multi_index
find()
和erase()
方法獲得similiar std::map
find()
和erase()
的方法呢?的boost :: multi_index和std ::地圖查找()和刪除()
[從註釋:]我有這樣的方法:
typename container1::const_iterator find(const K& key) const
{
//typedef typename nth_index<container1,0>::type it; c.get<1>().find(key);
return (???);
}
我應該寫在我的return語句?
請發表您想要做什麼的示例(僞代碼是確定的);我無法從你的口頭描述中瞭解你的問題。 –
@kerrekSB:我有這種方法: 'typename container1 :: const_iterator find(const K&key)const { // typedef typename nth_index :: type it; c.get <1>().find(key); return(???); }' 我應該在退貨聲明中寫什麼? –
Superman