#include
#include
class Base
{
public:
Base() {}
};
class Derived : public Base
{
public:
Derived() {}
Derived(std::ini
The reason why
auto example = new Derived({
{ 0, std::make_shared<Derived>() }
});
works is that the compiler knows that it has to match the initializer
{{ 0, std::make_shared<Derived>() }}
somehow with the constructor
Derived::Derived(std::initializer_list<std::pair<int, std::shared_ptr<Base>>>) {}
So it is clear that the element of the initializer list,
{ 0, std::make_shared<Derived>() }
needs to be used to initialize a std::pair<int, std::shared_ptr<Base>>
. It then finds a constructor for the pair that takes two elements,
pair::pair (const first_type& a, const second_type& b);
where first_type
is int
and second_type
is std::shared_ptr<Base>
. So finally we see that the argument std::make_shared<Derived>()
is implicitly converted to std::shared_ptr<Base>
, and we're good to go!
In the above, I pointed out that the compiler handles initializer lists by looking for a constructor that accepts either an initializer list directly, or the appropriate number of arguments, to which the initializer list's elements are then passed, after appropriate implicit conversions if necessary. For example, the compiler can figure out that your std::shared_ptr<Derived>
needs to be implicitly converted to std::shared_ptr<Base>
in the above example only because the pair's constructor demands it.
Now consider
std::make_shared<Derived>({
{ 0, std::make_shared<Derived>() }
})
The problem is that make_shared<Derived>
is a partially specialized function template that can accept arguments of arbitrary number and type. Because of this, the compiler has no idea how to handle the initializer list
{{ 0, std::make_shared<Derived>() }}
It doesn't know at the time of overload resolution that it needs to be converted to std::initializer_list<std::pair<int, std::shared_ptr<Base>>>
. Additionally, a braced-init-list is never deduced as std::initializer_list<T>
by template deduction, so even if you had something like
std::make_shared<Derived>({0, 0})
and Derived
had an appropriate constructor taking std::initializer_list<int>
, it still wouldn't work, for the same reason: std::make_shared<Derived>
would not be able to deduce any type for its argument.
How to fix this? Unfortunately, I cannot see any easy way. But at least now you should know why what you wrote doesn't work.
For this to work, you need to create a custom make_shared_from_list
, as make_shared
does not support non-explicit initializer lists. The reason is described well by @brian.
I would use a traits class to map a type T
to the type of initializer list.
template<class>struct list_init{};// sfinae support
template<> struct list_init<Derived>{using type=std::pair<int, std::shared_ptr<Base>>;};
template<class T>using list_init_t=typename list_init<T>::type;
template<class T>
std::shared_ptr<T> make_shared_from_list( std::initializer_list<list_init_t<T>> list ){
return std::make_shared<T>( std::move(list) );
}
or something like that.
Alternatively, "cast" the {...}
to the initializer_list<blah>
directly (not a cast, but rather a construction) may work.
In theory, sufficient reflection metaprogramming support would allow shared_ptr
to do this without the traits class, bit that is pretty far down the pipe.