gpt4 book ai didi

C++将参数包扩展为数组元组

转载 作者:可可西里 更新时间:2023-11-01 17:37:52 24 4
gpt4 key购买 nike

我想实例化一个

template<typename ...Args>
class X {
private:
std::tuple<std::array<Arg0, 255>, std::array<Arg1, 255>, ...> m_tuples; // For Arg in Args
}

我知道这不是正确的 C++,但我如何才能实现将类的参数包模板扩展到元组中保存的数组的效果?

最佳答案

template<typename ...Args>
class X {
private:
std::tuple<std::array<Args, 255>...> m_tuples; // For Arg in Args
};

...你没想到会这么亲密,是吗:)

关于C++将参数包扩展为数组元组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41028171/

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