3
Why does boost::find_first take a non-const reference to its input?的評論建議「調用者創建一個帶const_iterator模板參數的非const iterator_range來」證明「迭代對象具有足夠的生命週期。如何創建const boost :: iterator_range
這是什麼意思,我該怎麼做?
特別是,如何使用此代碼實現const正確性?
typedef std::map<int, double> tMyMap;
tMyMap::const_iterator subrange_begin = my_map.lower_bound(123);
tMyMap::const_iterator subrange_end = my_map.upper_bound(456);
// I'd like to return a subrange that can't modify my_map
// but this vomits template errors complaining about const_iterators
return boost::iterator_range<tMyMap::const_iterator>(subrange_begin, subrange_end);
編譯爲我[GCC 5.3和CoLiRu升壓1.59(http://coliru.stacked-crooked.com/a/2bd88699b279a77a)2分開。 – rhashimoto
奇怪,也許是版本問題。我是gcc 4.8.4/Boost 1.55 –