Initializing an std::array of non-default-constructible elements?

微笑、不失礼 提交于 2019-11-30 03:51:39

问题


Suppose type foo_t with a named constructor idiom, make_foo(). Now, I want to have exactly 123 foo's - no more, no less. So, I'm thinking about an std::array<foo_t, 123>. Now, if foo_t were default-constructible, I would write:

std::array<foo_t, 123> pity_the_foos;
std::generate(
    std::begin(pity_the_foos), std::end(pity_the_foos),
    []() { return make_foo(); }
);

and Bob's my uncle, right? Unfortunately... foo_t has no default ctor.

How should I initialize my array, then? Do I need to use some variadic template expansion voodoo perhaps?

Note: Answers may use anything in C++11, C++14 or C++17 if that helps at all.


回答1:


The usual.

template<size_t...Is>
std::array<foo_t, sizeof...(Is)> make_foos(std::index_sequence<Is...>) {
    return { ((void)Is, make_foo())... };
}

template<size_t N>
std::array<foo_t, N> make_foos() {
    return make_foos(std::make_index_sequence<N>());
}


来源:https://stackoverflow.com/questions/46899731/initializing-an-stdarray-of-non-default-constructible-elements

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!