Trovo alcune parole qui http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/constructstd :: scoped_allocator_adaptor e una classe con un costruttore utilizza std :: allocator_arg_t
se
std::uses_allocator<T, inner_allocator_type>::value==true
(il tipo T utilizza ripartitori, ad esempio, si tratta di un contenitore)e se
std::is_constructible<T, std::allocator_arg_t, inner_allocator_type, Args...>::value==true
,poi chiama
std::allocator_traits<OUTERMOST>::construct(OUTERMOST(*this), p, std::allocator_arg, inner_allocator(), std::forward<Args>(args)...);
Quindi, faccio un semplice test
struct use_arg {
template <typename Alloc>
use_arg(std::allocator_arg_t, Alloc &, int i)
{ std::cout << i << " in use_arg()\n"; }
};
namespace std {
template <typename A> struct uses_allocator<use_arg, A>: true_type {};
} // namespace std
void test_scoped()
{
std::scoped_allocator_adaptor<std::allocator<use_arg>> sa;
auto p = sa.allocate(1);
sa.construct(p, 4);
sa.destroy(p);
sa.deallocate(p, 1);
}
ma gcc e clang mi danno questi errori https://gist.github.com/anonymous/3e72754a7615162280fb
scrivo anche use_a
per sostituire use_arg
. Potrebbe funzionare correttamente.
struct use_a {
template <typename Alloc>
use_a(int i, Alloc &) { std::cout << i << " in use_a()\n"; }
};
Cosa fa accadere questi comportamenti?
Che dire di 'std :: is_constructible >> :: value'? È anche 'falso', ma potrebbe costruire. –
linux40
@ linux40 che sembra un bug, dato che ad esempio in clang, non esiste questo controllo, solo il valore uses_allocator :: è selezionato. – ForEveR
c'è anche un solo controllo in gcc anche. – ForEveR