Bu standarttan bir garanti değildir, ancak başka bir veri noktası olarak LLVM libc ++v.push_back(v[0])
için güvenlidir .
libc ++ 'ınstd::vector::push_back
__push_back_slow_path
belleği yeniden tahsis etmesi gerektiğinde çağırır :
void __push_back_slow_path(_Up& __x) {
allocator_type& __a = this->__alloc();
__split_buffer<value_type, allocator_type&> __v(__recommend(size() + 1),
size(),
__a);
// Note that we construct a copy of __x before deallocating
// the existing storage or moving existing elements.
__alloc_traits::construct(__a,
_VSTD::__to_raw_pointer(__v.__end_),
_VSTD::forward<_Up>(__x));
__v.__end_++;
// Moving existing elements happens here:
__swap_out_circular_buffer(__v);
// When __v goes out of scope, __x will be invalid.
}
push_back
verdi . Başka bir poster , tarif ettiğiniz vakayı düzgün bir şekilde ele almadığı için bir hataya dikkat çekti . Anladığım kadarıyla hiç kimse bunun bir hata olmadığını iddia etmedi. Bunun kesin bir kanıt olduğunu söylemiyorum, sadece bir gözlem.