this questionのコンテキストでは、 how back_emplacer
usesemplace_back
の代わりに useを使用する C++11 の実装を次に示しstd::back_inserter
ますpush_back
。
#include <iterator>
#include <vector>
#include <iostream>
template<class Container>
class back_emplace_iterator : public std::iterator< std::output_iterator_tag,
void, void, void, void >
{
protected:
Container* container;
public:
typedef Container container_type;
explicit back_emplace_iterator(Container& x) : container(&x) {}
// ==== FROM UPDATE ====
template<class T>
using _not_self =
typename std::enable_if<
!std::is_same<
typename std::decay<T>::type,
back_emplace_iterator
>::value
>::type;
// =====================
// ==== UNIVERSAL REFERENCE ASSIGNMENT ====
template<class T, class = _not_self<T>>
back_emplace_iterator<Container>&
operator=(T&& t)
{
container->emplace_back(std::forward<T>(t));
return *this;
}
// ========================================
back_emplace_iterator& operator*() { return *this; }
back_emplace_iterator& operator++() { return *this; }
back_emplace_iterator& operator++(int) { return *this; }
};
template< class Container >
inline back_emplace_iterator<Container>
back_emplacer( Container& c )
{
return back_emplace_iterator<Container>(c);
}
struct Demo
{
int i;
Demo(int i) : i(i) {}
};
int main()
{
std::vector<int> x = {1,2,3,4,5};
std::vector<Demo> y;
std::copy(x.begin(), x.end(), back_emplacer(y));
for (auto d : y)
std::cout << d.i << std::endl;
}
ユニバーサル参照operator=(T&&)
は、デフォルトのコピー代入演算子および/またはデフォルトのムーブ代入演算子の生成を無効にしますか?
もしそうなら、オーバーロードの解決でユニバーサルリファレンスバージョンを打ち負かすように、それらを明示的に定義するにはどうすればよいですか?
そうでない場合、暗黙的に生成されたものはユニバーサルリファレンスバージョンよりも優れていますか?
また、ユニバーサル リファレンス バージョンはイニシャライザ リストで適切に動作しますか?
アップデート:
_not_self
デフォルトのコピー/移動割り当てを復元するためのエイリアス テンプレートが追加されました。ありがとうアレックス。