gpt4 book ai didi

c++ - 在类的成员初始化器列表中初始化 std::tuple

转载 作者:行者123 更新时间:2023-11-30 00:50:18 33 4
gpt4 key购买 nike

我有一个元组作为模板类的成员,我想初始化 std::tuple当我构造类的实例时。

template <typename ...Type>
struct Boundary {
std::tuple<Type...> lower_boundary, upper_boundary;
Boundary() : lower_boundary(), upper_boudary(){}
}

lower_boundaryupper_boundary , 我想将每个元素初始化为 numeric_limits<type for that element>::min()max() .有什么办法可以在成员初始化列表中做到这一点吗?我知道我可以在构造函数中设置它,我正在寻找其他方法。

最佳答案

例如

Boundary()
: lower_boundary(std::numeric_limits<Type>::min()...),
upper_boundary(std::numeric_limits<Type>::max()...)
{}

关于c++ - 在类的成员初始化器列表中初始化 std::tuple,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25497003/

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