gpt4 book ai didi

c++ - 在编译时创建 N 个对象的最佳方式

转载 作者:行者123 更新时间:2023-11-30 05:30:14 25 4
gpt4 key购买 nike

我想知道您将如何在编译时使用模板创建 N 个对象。或者这确实是一种很好的做法。

我有一个包含一些常量的头文件:

constexpr size_t N_TIMES = 3;
constexpr uint32_t MIN[N_TIMES] = {0,1,2};
constexpr uint32_t MAX[N_TIMES] = {1,2,3};

然后是一个包含将生成“N”次的模板的头文件:

template <typename T>
class foo
{

public:

foo(uint32_t min , uint32_t max) :
min(min),
max(max)
{
std::cout << "I was created with " << min << " " << max << std::endl;
}

private:

const uint32_t min;
const uint32_t max;
};

我有点不确定的部分是:

template <typename T>

class bar
{
public:

bar()
{

for(auto i = 0; i < N_TIMES; i ++)
{
foo_[i] = foo<T>(MIN[i], MAX[i]);
}
}
private:
std::array<foo<T>, N_TIMES> foo_;
};

我目前收到错误:

cannot be assigned because its copy assignment operator is implicitly deleted

但是因为它在构造函数中,所以无论如何它都会在编译后生成它。所以我真的只是想知道我应该如何解决这个问题。如果有某种巧妙的递归技巧,我可以在编译时为我创建这些对象。

最佳答案

你可以使用std::index_sequence:

namespace detail
{

template <typename T, std::size_t N, std::size_t...Is>
std::array<Foo<T>, N> make_foo_array(std::index_sequence<Is...>)
{
return {{Foo<T>(MIN[Is], MAX[Is])...}};
}

}

template <typename T, std::size_t N>
std::array<Foo<T>, N> make_foo_array()
{
return detail::make_foo_array<T, N>(std::make_index_sequence<N>{});
}

然后

template <typename T>
class bar
{
public:
bar() : foo_(make_foo_array<T, N_TIMES>()) {}
private:
std::array<foo<T>, N_TIMES> foo_;
};

关于c++ - 在编译时创建 N 个对象的最佳方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36061928/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com