Calling initializer_list constructor via make_unique/make_shared

后端 未结 2 1661
没有蜡笔的小新
没有蜡笔的小新 2020-11-29 09:16

I\'m trying to use std::make_unique to instanciate a class whose constructor is to receive an std::initializer_list. Here a minimal case :

2条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-29 09:52

    std::make_unique is a function template which deduces the argument types which are passed to the object constructor. Unfortunately, braced lists are not deducible (with an exception for auto declarations), and so you cannot instantiate the function template when that missing parameter type.

    You can either not use std::make_unique, but please don't go that route – you should avoid naked news as much as you can, for the children's sake. Or you can make the type deduction work by specifying the type:

    • std::make_unique(std::initializer_list({"Hello", "World"}))

    • std::make_unique>({"Hello", "World"})

    • auto il = { "Hello"s, "World"s }; auto ptr = std::make_unique(il);

    The last option uses the special rule for auto declarations, which (as I hinted above) do in fact deduce an std::initializer_list.

提交回复
热议问题