gpt4 book ai didi

c++ - std::tuple 作为类成员

转载 作者:太空狗 更新时间:2023-10-29 19:52:49 25 4
gpt4 key购买 nike

如何创建一个成员类型为std::tuple的对象?

我尝试编译这段代码。

  6 template <class ... T>
7 class Iterator
8 {
9 public:
10 Iterator(T ... args)
11 : tuple_(std::make_tuple(args))
12 {
13 }
14
15 private:
16 std::tuple<T ...> tuple_;
17 };

但是编译失败,出现如下错误。

variadic.cpp: In constructor ‘Iterator<T>::Iterator(T ...)’:
variadic.cpp:11:33: error: parameter packs not expanded with ‘...’:
variadic.cpp:11:33: note: ‘args’

代码有什么问题?

最佳答案

args 是可变的,所以你必须用 ... 扩展它:

: tuple_(std::make_tuple(args...))
// ^^^

而且你不需要make_tuple:

: tuple_(args...)

关于c++ - std::tuple 作为类成员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19620818/

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