คุณจะทำซ้ำองค์ประกอบของ std :: tuple ได้อย่างไร


113

ฉันจะทำซ้ำบนทูเพิล (โดยใช้ C ++ 11) ได้อย่างไร ฉันลองทำสิ่งต่อไปนี้:

for(int i=0; i<std::tuple_size<T...>::value; ++i) 
  std::get<i>(my_tuple).do_sth();

แต่ไม่ได้ผล:

ข้อผิดพลาด 1: ขออภัยไม่ได้ใช้งาน: ไม่สามารถขยาย 'Listener ... ' ลงในรายการอาร์กิวเมนต์ที่มีความยาวคงที่
ข้อผิดพลาด 2: ฉันไม่สามารถปรากฏในนิพจน์คงที่

ดังนั้นฉันจะทำซ้ำองค์ประกอบของทูเพิลอย่างถูกต้องได้อย่างไร


2
ฉันขอถามว่าคุณรวบรวมใน C ++ 0x ได้อย่างไร มันไม่ได้เปิดตัวหรือไม่พร้อมเท่าที่ฉันรู้
Burkhard

5
g ++ มีการสนับสนุนการทดลองของคุณสมบัติ C ++ 0X บางอย่างรวมถึงเทมเพลตที่แตกต่างกันตั้งแต่เวอร์ชัน 4.3 คอมไพเลอร์อื่น ๆ ก็ทำเช่นเดียวกัน (ด้วยชุดคุณสมบัติที่แตกต่างกันหากคุณต้องการใช้ในการผลิตคุณกลับมาในยุค 90 พร้อมกับการสนับสนุนที่หลากหลายสำหรับสิ่งที่มีขอบเลือดออก)
AProgrammer

ฉันใช้ g ++ เวอร์ชัน 4.4 กับ std = c ++ 0x

9
คำถามนี้ต้องการการอัปเดต C ++ 11
Omnifarious

2
ตอนนี้ @Omnifarious ต้องการการอัปเดต C ++ 14
pepper_chico

คำตอบ:


27

Boost Fusionเป็นไปได้:

ตัวอย่างที่ยังไม่ทดสอบ:

struct DoSomething
{
    template<typename T>
    void operator()(T& t) const
    {
        t.do_sth();
    }
};

tuple<....> t = ...;
boost::fusion::for_each(t, DoSomething());

@ViktorSehr AFAICT มันไม่ได้ (อย่างน้อยใน GCC 4.7.2)? ใครมีคำใบ้?
sehe

@ViktorSehr พบปัญหา: ข้อผิดพลาด / การละเว้นทำให้พฤติกรรมของฟิวชั่นขึ้นอยู่กับลำดับของการรวมโปรดดูตั๋ว Boost # 8418สำหรับรายละเอียดเพิ่มเติม
ดู

จำเป็นต้องใช้ boost :: fusion :: tuple แทน std :: tuple เพื่อให้ทำงานได้
Marcin

ภายใต้ GCC 8.1 / mingw-64 ฉันได้รับคำเตือนสองคำสำหรับการใช้ boost :: fusion :: for_each ด้วยนิพจน์แลมบ์ดา std: boost / mpl / assert.hpp: 188: 21: คำเตือน: วงเล็บที่ไม่จำเป็นในการประกาศ 'assert_arg' [-Wparentheses] ล้มเหลว ************ (Pred :: ************ boost / mpl / assert.hpp: 193: 21: คำเตือน: วงเล็บที่ไม่จำเป็นใน การประกาศ 'assert_not_arg' [-Wparentheses] ล้มเหลว ************ (boost :: mpl :: not_ <Pred> :: ************
Hossein

129

ฉันมีคำตอบจากการทำซ้ำบน Tuple :

#include <tuple>
#include <utility> 
#include <iostream>

template<std::size_t I = 0, typename... Tp>
inline typename std::enable_if<I == sizeof...(Tp), void>::type
  print(std::tuple<Tp...>& t)
  { }

template<std::size_t I = 0, typename... Tp>
inline typename std::enable_if<I < sizeof...(Tp), void>::type
  print(std::tuple<Tp...>& t)
  {
    std::cout << std::get<I>(t) << std::endl;
    print<I + 1, Tp...>(t);
  }

int
main()
{
  typedef std::tuple<int, float, double> T;
  T t = std::make_tuple(2, 3.14159F, 2345.678);

  print(t);
}

แนวคิดปกติคือการใช้การเรียกซ้ำเวลาคอมไพล์ ในความเป็นจริงแนวคิดนี้ใช้เพื่อสร้าง printf ที่มีความปลอดภัยตามที่ระบุไว้ในเอกสารทูเปิลดั้งเดิม

สิ่งนี้สามารถสรุปได้อย่างง่ายดายเป็นfor_eachสำหรับสิ่งที่เพิ่มขึ้น:

#include <tuple>
#include <utility> 

template<std::size_t I = 0, typename FuncT, typename... Tp>
inline typename std::enable_if<I == sizeof...(Tp), void>::type
  for_each(std::tuple<Tp...> &, FuncT) // Unused arguments are given no names.
  { }

template<std::size_t I = 0, typename FuncT, typename... Tp>
inline typename std::enable_if<I < sizeof...(Tp), void>::type
  for_each(std::tuple<Tp...>& t, FuncT f)
  {
    f(std::get<I>(t));
    for_each<I + 1, FuncT, Tp...>(t, f);
  }

แม้ว่าสิ่งนี้จะต้องใช้ความพยายามในการFuncTแสดงบางสิ่งที่มีโอเวอร์โหลดที่เหมาะสมสำหรับทุกประเภทที่ทูเปิลอาจมี วิธีนี้จะได้ผลดีที่สุดหากคุณรู้ว่าองค์ประกอบทูเพิลทั้งหมดจะแบ่งคลาสพื้นฐานทั่วไปหรือสิ่งที่คล้ายกัน


5
ขอบคุณสำหรับตัวอย่างง่ายๆที่ดี สำหรับ C ++ เริ่มต้นมองหาพื้นหลังในวิธีการทำงานนี้ดูSFINAEและเอกสารenable_if
Faheem Mitha

for_eachนี้ได้อย่างง่ายดายโดยทั่วไปจะเป็นทั่วไป ที่จริงฉันทำเอง :-) ฉันคิดว่าคำตอบนี้จะมีประโยชน์มากขึ้นหากเป็นไปโดยทั่วไปแล้ว
Omnifarious

4
ที่นั่นฉันเพิ่มการวางนัยทั่วไปเพราะฉันต้องการจริงๆและฉันคิดว่ามันจะมีประโยชน์สำหรับคนอื่น ๆ ที่จะเห็น
Omnifarious

2
หมายเหตุ: คุณอาจต้องใช้เวอร์ชันที่มีconst std::tuple<Tp...>&.. หากคุณไม่ได้ตั้งใจที่จะแก้ไขทูเปิลในขณะที่ทำซ้ำconstเวอร์ชันเหล่านั้นก็เพียงพอแล้ว
กีตาร์สุด

2
ไม่เป็นลายลักษณ์อักษร .. คุณสามารถสร้างเวอร์ชันโดยพลิกการจัดทำดัชนี - เริ่มที่ I = sizeof ... (Tp) แล้วนับถอยหลัง จากนั้นระบุจำนวนอาร์กิวเมนต์สูงสุดอย่างชัดเจน คุณยังสามารถสร้างเวอร์ชันที่ผิดประเภทแท็กเช่น break_t จากนั้นคุณจะใส่ออบเจ็กต์ของประเภทแท็กนั้นในทูเปิลของคุณเมื่อคุณต้องการหยุดพิมพ์ หรือคุณสามารถระบุประเภทการหยุดเป็นเทมเพลต เห็นได้ชัดว่าคุณไม่สามารถหยุดพักได้ในขณะวิ่ง
emsr

55

ใน C ++ 17 คุณสามารถใช้std::applyกับนิพจน์พับ :

std::apply([](auto&&... args) {((/* args.dosomething() */), ...);}, the_tuple);

ตัวอย่างที่สมบูรณ์สำหรับการพิมพ์ทูเพิล:

#include <tuple>
#include <iostream>

int main()
{
    std::tuple t{42, 'a', 4.2}; // Another C++17 feature: class template argument deduction
    std::apply([](auto&&... args) {((std::cout << args << '\n'), ...);}, t);
}

[ตัวอย่างออนไลน์บน Coliru]

วิธีการแก้ปัญหานี้แก้ปัญหาของการสั่งซื้อการประเมินผลในคำตอบของเอ็ม Alaggan


1
คุณช่วยอธิบายได้ไหมว่าเกิดอะไรขึ้นที่นี่: ((std::cout << args << '\n'), ...);? แลมบ์ดาถูกเรียกใช้หนึ่งครั้งโดยที่องค์ประกอบทูเปิลที่ไม่ได้บรรจุเป็นargsแต่วงเล็บคู่จะเป็นอย่างไร
helmesjo

4
@helmesjo ขยายเป็นนิพจน์ลูกน้ำ((std::cout << arg1 << '\n'), (std::cout << arg2 << '\n'), (std::cout << arg3 << '\n'))ที่นี่
xskxzr

โปรดทราบว่าในกรณีที่คุณต้องการทำสิ่งที่ไม่ถูกต้องตามกฎหมายในนิพจน์ลูกน้ำ (เช่นการประกาศตัวแปรและบล็อก) คุณสามารถใส่ทุกอย่างลงในวิธีการและเรียกมันจากภายในนิพจน์ลูกน้ำพับได้
Miral

24

ใน C ++ 17 คุณสามารถทำได้:

std::apply([](auto ...x){std::make_tuple(x.do_something()...);} , the_tuple);

สิ่งนี้ใช้งานได้แล้วใน Clang ++ 3.9 โดยใช้ std :: trial :: apply


4
สิ่งนี้ไม่นำไปสู่การวนซ้ำ - เช่นการเรียกของdo_something()- ที่เกิดขึ้นในลำดับที่ไม่ระบุเนื่องจากชุดพารามิเตอร์ถูกขยายภายในการเรียกใช้ฟังก์ชัน()ซึ่งอาร์กิวเมนต์มีลำดับที่ไม่ระบุหรือไม่? นั่นอาจมีความสำคัญมาก std::get<>()ฉันคิดว่าคนส่วนใหญ่คาดว่าจะสั่งซื้อที่จะรับประกันว่าจะเกิดขึ้นในลำดับเดียวกับสมาชิกคือเป็นดัชนีที่จะ AFAIK {braces}จะได้รับการสั่งซื้อการรับประกันในกรณีเช่นนี้การขยายตัวจะต้องทำภายใน ฉันผิดเหรอ? คำตอบนี้ให้ความสำคัญกับลำดับดังกล่าว: stackoverflow.com/a/16387374/2757035
underscore_d

21

ใช้ Boost Hana และ lambdas ทั่วไป:

#include <tuple>
#include <iostream>
#include <boost/hana.hpp>
#include <boost/hana/ext/std/tuple.hpp>

struct Foo1 {
    int foo() const { return 42; }
};

struct Foo2 {
    int bar = 0;
    int foo() { bar = 24; return bar; }
};

int main() {
    using namespace std;
    using boost::hana::for_each;

    Foo1 foo1;
    Foo2 foo2;

    for_each(tie(foo1, foo2), [](auto &foo) {
        cout << foo.foo() << endl;
    });

    cout << "foo2.bar after mutation: " << foo2.bar << endl;
}

http://coliru.stacked-crooked.com/a/27b3691f55caf271


4
ได้โปรดอย่าไปusing namespace boost::fusion(โดยเฉพาะร่วมกับusing namespace std) ตอนนี้ไม่มีทางรู้ได้ว่านั่นfor_eachคือstd::for_eachหรือboost::fusion::for_each
Bulletmagnet

3
@Bulletmagnet สิ่งนี้ทำเพื่อความตึงเครียดที่นี่และ ADL สามารถจัดการได้โดยไม่มีปัญหา นอกจากนี้ยังทำงานในท้องถิ่น
pepper_chico

16

C ++ กำลังแนะนำคำสั่งการขยายเพื่อจุดประสงค์นี้ เดิมพวกเขาติดตาม C ++ 20 แต่พลาดการตัดไปอย่างหวุดหวิดเนื่องจากไม่มีเวลาตรวจสอบถ้อยคำภาษา (ดูที่นี่และที่นี่ )

ไวยากรณ์ที่ตกลงกันในปัจจุบัน (ดูลิงก์ด้านบน) คือ:

{
    auto tup = std::make_tuple(0, 'a', 3.14);
    template for (auto elem : tup)
        std::cout << elem << std::endl;
}

15

วิธีที่เรียบง่ายใช้งานง่ายและเป็นมิตรกับคอมไพเลอร์ในการทำเช่นนี้ใน C ++ 17 โดยใช้if constexpr:

// prints every element of a tuple
template<size_t I = 0, typename... Tp>
void print(std::tuple<Tp...>& t) {
    std::cout << std::get<I>(t) << " ";
    // do things
    if constexpr(I+1 != sizeof...(Tp))
        print<I+1>(t);
}

นี่คือการเรียกซ้ำเวลาคอมไพล์คล้ายกับที่นำเสนอโดย @emsr แต่สิ่งนี้ไม่ใช้ SFINAE ดังนั้น (ฉันคิดว่า) มันเป็นมิตรกับคอมไพเลอร์มากกว่า


8

คุณต้องใช้เทมเพลต metaprogramming ซึ่งแสดงด้วย Boost ที่นี่

#include <boost/tuple/tuple.hpp>
#include <iostream>

template <typename T_Tuple, size_t size>
struct print_tuple_helper {
    static std::ostream & print( std::ostream & s, const T_Tuple & t ) {
        return print_tuple_helper<T_Tuple,size-1>::print( s, t ) << boost::get<size-1>( t );
    }
};

template <typename T_Tuple>
struct print_tuple_helper<T_Tuple,0> {
    static std::ostream & print( std::ostream & s, const T_Tuple & ) {
        return s;
    }
};

template <typename T_Tuple>
std::ostream & print_tuple( std::ostream & s, const T_Tuple & t ) {
    return print_tuple_helper<T_Tuple,boost::tuples::length<T_Tuple>::value>::print( s, t );
}

int main() {

    const boost::tuple<int,char,float,char,double> t( 0, ' ', 2.5f, '\n', 3.1416 );
    print_tuple( std::cout, t );

    return 0;
}

ใน C ++ 0x คุณสามารถเขียนprint_tuple()เป็นฟังก์ชันแม่แบบตัวแปรแทนได้


8

ก่อนอื่นให้กำหนดตัวช่วยดัชนีบางตัว:

template <size_t ...I>
struct index_sequence {};

template <size_t N, size_t ...I>
struct make_index_sequence : public make_index_sequence<N - 1, N - 1, I...> {};

template <size_t ...I>
struct make_index_sequence<0, I...> : public index_sequence<I...> {};

ด้วยฟังก์ชันของคุณคุณต้องการใช้กับองค์ประกอบทูเพิลแต่ละรายการ:

template <typename T>
/* ... */ foo(T t) { /* ... */ }

คุณสามารถเขียน:

template<typename ...T, size_t ...I>
/* ... */ do_foo_helper(std::tuple<T...> &ts, index_sequence<I...>) {
    std::tie(foo(std::get<I>(ts)) ...);
}

template <typename ...T>
/* ... */ do_foo(std::tuple<T...> &ts) {
    return do_foo_helper(ts, make_index_sequence<sizeof...(T)>());
}

หรือถ้าfooส่งคืนให้voidใช้

std::tie((foo(std::get<I>(ts)), 1) ... );

หมายเหตุ: ใน C ++ 14 make_index_sequenceถูกกำหนดไว้แล้ว ( http://en.cppreference.com/w/cpp/utility/integer_sequence )

หากคุณต้องการลำดับการประเมินจากซ้ายไปขวาให้พิจารณาสิ่งต่อไปนี้:

template <typename T, typename ...R>
void do_foo_iter(T t, R ...r) {
    foo(t);
    do_foo(r...);
}

void do_foo_iter() {}

template<typename ...T, size_t ...I>
void do_foo_helper(std::tuple<T...> &ts, index_sequence<I...>) {
    do_foo_iter(std::get<I>(ts) ...);
}

template <typename ...T>
void do_foo(std::tuple<T...> &ts) {
    do_foo_helper(ts, make_index_sequence<sizeof...(T)>());
}

1
ควรโยนค่าส่งคืนของfooto voidก่อนที่จะเรียกใช้operator,เพื่อหลีกเลี่ยงการทำงานหนักเกินไป
Yakk - Adam Nevraumont

7

นี่เป็นวิธีง่ายๆของ C ++ 17 ในการทำซ้ำรายการทูเปิลด้วยไลบรารีมาตรฐาน:

#include <tuple>      // std::tuple
#include <functional> // std::invoke

template <
    size_t Index = 0, // start iteration at 0 index
    typename TTuple,  // the tuple type
    size_t Size =
        std::tuple_size_v<
            std::remove_reference_t<TTuple>>, // tuple size
    typename TCallable, // the callable to bo invoked for each tuple item
    typename... TArgs   // other arguments to be passed to the callable 
>
void for_each(TTuple&& tuple, TCallable&& callable, TArgs&&... args)
{
    if constexpr (Index < Size)
    {
        std::invoke(callable, args..., std::get<Index>(tuple));

        if constexpr (Index + 1 < Size)
            for_each<Index + 1>(
                std::forward<TTuple>(tuple),
                std::forward<TCallable>(callable),
                std::forward<TArgs>(args)...);
    }
}

ตัวอย่าง:

#include <iostream>

int main()
{
    std::tuple<int, char> items{1, 'a'};
    for_each(items, [](const auto& item) {
        std::cout << item << "\n";
    });
}

เอาท์พุท:

1
a

สิ่งนี้สามารถขยายได้เพื่อทำลายลูปแบบมีเงื่อนไขในกรณีที่ callable ส่งคืนค่า (แต่ยังใช้งานได้กับ callables ที่ไม่ส่งคืนค่าที่กำหนดบูลได้เช่นโมฆะ):

#include <tuple>      // std::tuple
#include <functional> // std::invoke

template <
    size_t Index = 0, // start iteration at 0 index
    typename TTuple,  // the tuple type
    size_t Size =
    std::tuple_size_v<
    std::remove_reference_t<TTuple>>, // tuple size
    typename TCallable, // the callable to bo invoked for each tuple item
    typename... TArgs   // other arguments to be passed to the callable 
    >
    void for_each(TTuple&& tuple, TCallable&& callable, TArgs&&... args)
{
    if constexpr (Index < Size)
    {
        if constexpr (std::is_assignable_v<bool&, std::invoke_result_t<TCallable&&, TArgs&&..., decltype(std::get<Index>(tuple))>>)
        {
            if (!std::invoke(callable, args..., std::get<Index>(tuple)))
                return;
        }
        else
        {
            std::invoke(callable, args..., std::get<Index>(tuple));
        }

        if constexpr (Index + 1 < Size)
            for_each<Index + 1>(
                std::forward<TTuple>(tuple),
                std::forward<TCallable>(callable),
                std::forward<TArgs>(args)...);
    }
}

ตัวอย่าง:

#include <iostream>

int main()
{
    std::tuple<int, char> items{ 1, 'a' };
    for_each(items, [](const auto& item) {
        std::cout << item << "\n";
    });

    std::cout << "---\n";

    for_each(items, [](const auto& item) {
        std::cout << item << "\n";
        return false;
    });
}

เอาท์พุท:

1
a
---
1

5

หากคุณต้องการใช้ std :: tuple และคุณมีคอมไพเลอร์ C ++ ที่รองรับเทมเพลตแบบต่างๆให้ลองใช้โค้ดร้อง (ทดสอบด้วย g ++ 4.5) นี่ควรเป็นคำตอบสำหรับคำถามของคุณ

#include <tuple>

// ------------- UTILITY---------------
template<int...> struct index_tuple{}; 

template<int I, typename IndexTuple, typename... Types> 
struct make_indexes_impl; 

template<int I, int... Indexes, typename T, typename ... Types> 
struct make_indexes_impl<I, index_tuple<Indexes...>, T, Types...> 
{ 
    typedef typename make_indexes_impl<I + 1, index_tuple<Indexes..., I>, Types...>::type type; 
}; 

template<int I, int... Indexes> 
struct make_indexes_impl<I, index_tuple<Indexes...> > 
{ 
    typedef index_tuple<Indexes...> type; 
}; 

template<typename ... Types> 
struct make_indexes : make_indexes_impl<0, index_tuple<>, Types...> 
{}; 

// ----------- FOR EACH -----------------
template<typename Func, typename Last>
void for_each_impl(Func&& f, Last&& last)
{
    f(last);
}

template<typename Func, typename First, typename ... Rest>
void for_each_impl(Func&& f, First&& first, Rest&&...rest) 
{
    f(first);
    for_each_impl( std::forward<Func>(f), rest...);
}

template<typename Func, int ... Indexes, typename ... Args>
void for_each_helper( Func&& f, index_tuple<Indexes...>, std::tuple<Args...>&& tup)
{
    for_each_impl( std::forward<Func>(f), std::forward<Args>(std::get<Indexes>(tup))...);
}

template<typename Func, typename ... Args>
void for_each( std::tuple<Args...>& tup, Func&& f)
{
   for_each_helper(std::forward<Func>(f), 
                   typename make_indexes<Args...>::type(), 
                   std::forward<std::tuple<Args...>>(tup) );
}

template<typename Func, typename ... Args>
void for_each( std::tuple<Args...>&& tup, Func&& f)
{
   for_each_helper(std::forward<Func>(f), 
                   typename make_indexes<Args...>::type(), 
                   std::forward<std::tuple<Args...>>(tup) );
}

boost :: fusion เป็นอีกทางเลือกหนึ่ง แต่ต้องใช้ประเภท tuple ของตัวเอง: boost :: fusion :: tuple มายึดมาตรฐานกันดีกว่า! นี่คือการทดสอบ:

#include <iostream>

// ---------- FUNCTOR ----------
struct Functor 
{
    template<typename T>
    void operator()(T& t) const { std::cout << t << std::endl; }
};

int main()
{
    for_each( std::make_tuple(2, 0.6, 'c'), Functor() );
    return 0;
}

พลังของแม่แบบที่หลากหลาย!


ฉันลองวิธีแก้ปัญหาแรกของคุณแล้ว แต่มันล้มเหลวเมื่อใช้ฟังก์ชันนี้กับคู่ คิดว่าทำไม template <typename T, typename U> โมฆะ addt (คู่ <T, U> p) {cout << p.first + p.second << endl; } int main (int argc, char * argv []) {cout << "สวัสดี" << endl; for_each (make_tuple (2,3,4), [] (int i) {cout << i << endl;}); for_each (make_tuple (make_pair (1,2), make_pair (3,4)), addt); กลับ 0; }
user2023370

มันน่าเสียดายที่คำตอบนี้ถูกเขียนอย่างละเอียดมากเพราะฉันคิดว่าวิธีการทำซ้ำ (for_each_impl) นั้นดีที่สุดในบรรดาโซลูชันทั้งหมดที่ฉันเคยเห็น
joki

3

ใน MSVC STL มีฟังก์ชัน _For_each_tuple_element (ไม่มีเอกสาร):

#include <tuple>

// ...

std::tuple<int, char, float> values{};
std::_For_each_tuple_element(values, [](auto&& value)
{
    // process 'value'
});

2

คนอื่น ๆ ได้กล่าวถึงไลบรารีของบุคคลที่สามที่ออกแบบมาอย่างดีซึ่งคุณอาจหันไปใช้ อย่างไรก็ตามหากคุณใช้ C ++ โดยไม่มีไลบรารีของบุคคลที่สามโค้ดต่อไปนี้อาจช่วยได้

namespace detail {

template <class Tuple, std::size_t I, class = void>
struct for_each_in_tuple_helper {
  template <class UnaryFunction>
  static void apply(Tuple&& tp, UnaryFunction& f) {
    f(std::get<I>(std::forward<Tuple>(tp)));
    for_each_in_tuple_helper<Tuple, I + 1u>::apply(std::forward<Tuple>(tp), f);
  }
};

template <class Tuple, std::size_t I>
struct for_each_in_tuple_helper<Tuple, I, typename std::enable_if<
    I == std::tuple_size<typename std::decay<Tuple>::type>::value>::type> {
  template <class UnaryFunction>
  static void apply(Tuple&&, UnaryFunction&) {}
};

}  // namespace detail

template <class Tuple, class UnaryFunction>
UnaryFunction for_each_in_tuple(Tuple&& tp, UnaryFunction f) {
  detail::for_each_in_tuple_helper<Tuple, 0u>
      ::apply(std::forward<Tuple>(tp), f);
  return std::move(f);
}

หมายเหตุ: โค้ดคอมไพเลอร์ที่รองรับ C ++ 11 และยังคงความสอดคล้องกับการออกแบบไลบรารีมาตรฐาน:

  1. ทูเปิลไม่จำเป็นต้องเป็นstd::tupleและอาจเป็นอะไรก็ได้ที่รองรับstd::getและstd::tuple_size; โดยเฉพาะอย่างยิ่งstd::arrayและstd::pairอาจใช้;

  2. ทูเปิลอาจเป็นประเภทอ้างอิงหรือ CV-Qualified;

  3. แต่ก็มีลักษณะการทำงานที่คล้ายกันstd::for_eachและผลตอบแทนการป้อนข้อมูลUnaryFunction;

  4. สำหรับผู้ใช้ C ++ 14 (หรือรุ่นที่ช้ากว่า) typename std::enable_if<T>::typeและtypename std::decay<T>::typeสามารถแทนที่ด้วยเวอร์ชันที่เรียบง่ายstd::enable_if_t<T>และstd::decay_t<T> ;

  5. สำหรับผู้ใช้ C ++ 17 (หรือรุ่นที่ใหม่กว่า) std::tuple_size<T>::valueสามารถแทนที่ด้วยเวอร์ชันที่เรียบง่าย, std::tuple_size_v<T>.

  6. สำหรับผู้ใช้ C ++ 20 (หรือรุ่นที่ช้ากว่า) SFINAEคุณลักษณะนี้สามารถใช้งานได้กับไฟล์Concepts.


2

การใช้constexprและif constexpr(C ++ 17) ค่อนข้างง่ายและตรงไปตรงมา:

template <std::size_t I = 0, typename ... Ts>
void print(std::tuple<Ts...> tup) {
  if constexpr (I == sizeof...(Ts)) {
    return;
  } else {
    std::cout << std::get<I>(tup) << ' ';
    print<I+1>(tup);
  }
}

1

ฉันอาจจะพลาดรถไฟขบวนนี้ แต่นี่จะเป็นข้อมูลอ้างอิงในอนาคต
นี่คือโครงสร้างของฉันตามคำตอบนี้และส่วนสำคัญนี้:

#include <tuple>
#include <utility>

template<std::size_t N>
struct tuple_functor
{
    template<typename T, typename F>
    static void run(std::size_t i, T&& t, F&& f)
    {
        const std::size_t I = (N - 1);
        switch(i)
        {
        case I:
            std::forward<F>(f)(std::get<I>(std::forward<T>(t)));
            break;

        default:
            tuple_functor<I>::run(i, std::forward<T>(t), std::forward<F>(f));
        }
    }
};

template<>
struct tuple_functor<0>
{
    template<typename T, typename F>
    static void run(std::size_t, T, F){}
};

จากนั้นคุณจะใช้มันดังต่อไปนี้:

template<typename... T>
void logger(std::string format, T... args) //behaves like C#'s String.Format()
{
    auto tp = std::forward_as_tuple(args...);
    auto fc = [](const auto& t){std::cout << t;};

    /* ... */

    std::size_t some_index = ...
    tuple_functor<sizeof...(T)>::run(some_index, tp, fc);

    /* ... */
}

อาจมีที่ว่างสำหรับการปรับปรุง


ตามรหัสของ OP มันจะกลายเป็น:

const std::size_t num = sizeof...(T);
auto my_tuple = std::forward_as_tuple(t...);
auto do_sth = [](const auto& elem){/* ... */};
for(int i = 0; i < num; ++i)
    tuple_functor<num>::run(i, my_tuple, do_sth);

1

จากคำตอบทั้งหมดที่ฉันเห็นที่นี่ที่นี่และที่นี่ฉันชอบวิธีการทำซ้ำที่ดีที่สุดของ@sigidagi น่าเสียดายที่คำตอบของเขานั้นละเอียดมากซึ่งในความคิดของฉันบดบังความชัดเจนโดยกำเนิด

นี้เป็นรุ่นของฉันของการแก้ปัญหาของเขาซึ่งเป็นที่รัดกุมมากขึ้นและทำงานร่วมกับstd::tuple, และstd::pairstd::array

template<typename UnaryFunction>
void invoke_with_arg(UnaryFunction)
{}

/**
 * Invoke the unary function with each of the arguments in turn.
 */
template<typename UnaryFunction, typename Arg0, typename... Args>
void invoke_with_arg(UnaryFunction f, Arg0&& a0, Args&&... as)
{
    f(std::forward<Arg0>(a0));
    invoke_with_arg(std::move(f), std::forward<Args>(as)...);
}

template<typename Tuple, typename UnaryFunction, std::size_t... Indices>
void for_each_helper(Tuple&& t, UnaryFunction f, std::index_sequence<Indices...>)
{
    using std::get;
    invoke_with_arg(std::move(f), get<Indices>(std::forward<Tuple>(t))...);
}

/**
 * Invoke the unary function for each of the elements of the tuple.
 */
template<typename Tuple, typename UnaryFunction>
void for_each(Tuple&& t, UnaryFunction f)
{
    using size = std::tuple_size<typename std::remove_reference<Tuple>::type>;
    for_each_helper(
        std::forward<Tuple>(t),
        std::move(f),
        std::make_index_sequence<size::value>()
    );
}

สาธิต: coliru

C ++ 14 std::make_index_sequenceสามารถดำเนินการสำหรับ C


0

tuple เพิ่มฟังก์ชั่นให้ผู้ช่วยget_head()และget_tail()เพื่อฟังก์ชั่นผู้ช่วยของคุณอาจมีลักษณะเช่นนี้

inline void call_do_sth(const null_type&) {};

template <class H, class T>
inline void call_do_sth(cons<H, T>& x) { x.get_head().do_sth(); call_do_sth(x.get_tail()); }

ตามที่อธิบายไว้ในที่นี่http://www.boost.org/doc/libs/1_34_0/libs/tuple/doc/tuple_advanced_interface.html

โดยstd::tupleควรจะคล้ายกัน

อันที่จริงน่าเสียดายที่std::tupleดูเหมือนจะไม่มีอินเทอร์เฟซดังกล่าวดังนั้นวิธีการที่แนะนำไว้ก่อนจึงควรใช้งานได้หรือคุณจะต้องเปลี่ยนไปใช้boost::tupleซึ่งมีประโยชน์อื่น ๆ (เช่นตัวดำเนินการ io ที่มีให้แล้ว) แม้ว่าจะมีข้อเสียของboost::tuplegcc แต่ก็ยังไม่ยอมรับเทมเพลตตัวแปร แต่อาจได้รับการแก้ไขแล้วเนื่องจากฉันไม่ได้ติดตั้งบูสต์เวอร์ชันล่าสุดในเครื่องของฉัน


0

ฉันพบปัญหาเดียวกันกับการวนซ้ำบนวัตถุฟังก์ชันดังนั้นนี่คืออีกหนึ่งวิธีแก้ปัญหา:

#include <tuple> 
#include <iostream>

// Function objects
class A 
{
    public: 
        inline void operator()() const { std::cout << "A\n"; };
};

class B 
{
    public: 
        inline void operator()() const { std::cout << "B\n"; };
};

class C 
{
    public:
        inline void operator()() const { std::cout << "C\n"; };
};

class D 
{
    public:
        inline void operator()() const { std::cout << "D\n"; };
};


// Call iterator using recursion.
template<typename Fobjects, int N = 0> 
struct call_functors 
{
    static void apply(Fobjects const& funcs)
    {
        std::get<N>(funcs)(); 

        // Choose either the stopper or descend further,  
        // depending if N + 1 < size of the tuple. 
        using caller = std::conditional_t
        <
            N + 1 < std::tuple_size_v<Fobjects>,
            call_functors<Fobjects, N + 1>, 
            call_functors<Fobjects, -1>
        >;

        caller::apply(funcs); 
    }
};

// Stopper.
template<typename Fobjects> 
struct call_functors<Fobjects, -1>
{
    static void apply(Fobjects const& funcs)
    {
    }
};

// Call dispatch function.
template<typename Fobjects>
void call(Fobjects const& funcs)
{
    call_functors<Fobjects>::apply(funcs);
};


using namespace std; 

int main()
{
    using Tuple = tuple<A,B,C,D>; 

    Tuple functors = {A{}, B{}, C{}, D{}}; 

    call(functors); 

    return 0; 
}

เอาท์พุท:

A 
B 
C 
D

0

อีกทางเลือกหนึ่งคือการใช้ตัวทำซ้ำสำหรับสิ่งที่เพิ่มขึ้น สิ่งนี้มีข้อดีคือคุณสามารถใช้อัลกอริทึมต่างๆที่จัดเตรียมโดยไลบรารีมาตรฐานและแบบอิงตามช่วงสำหรับลูป วิธีที่สง่างามนี้จะมีการอธิบายที่นี่https://foonathan.net/2017/03/tuple-iterator/ แนวคิดพื้นฐานคือการเปลี่ยนสิ่งที่เพิ่มเป็นช่วงbegin()และend()วิธีการในการจัดหาตัวทำซ้ำ iterator ตัวเองส่งกลับซึ่งจากนั้นจะสามารถเข้าเยี่ยมชมโดยใช้std::variant<...>std::visit

นี่คือตัวอย่างบางส่วน:

auto t = std::tuple{ 1, 2.f, 3.0 };
auto r = to_range(t);

for(auto v : r)
{
    std::visit(unwrap([](auto& x)
        {
            x = 1;
        }), v);
}

std::for_each(begin(r), end(r), [](auto v)
    {
        std::visit(unwrap([](auto& x)
            {
                x = 0;
            }), v);
    });

std::accumulate(begin(r), end(r), 0.0, [](auto acc, auto v)
    {
        return acc + std::visit(unwrap([](auto& x)
        {
            return static_cast<double>(x);
        }), v);
    });

std::for_each(begin(r), end(r), [](auto v)
{
    std::visit(unwrap([](const auto& x)
        {
            std::cout << x << std::endl;
        }), v);
});

std::for_each(begin(r), end(r), [](auto v)
{
    std::visit(overload(
        [](int x) { std::cout << "int" << std::endl; },
        [](float x) { std::cout << "float" << std::endl; },
        [](double x) { std::cout << "double" << std::endl; }), v);
});

การใช้งานของฉัน (ซึ่งขึ้นอยู่กับคำอธิบายในลิงค์ด้านบน):

#ifndef TUPLE_RANGE_H
#define TUPLE_RANGE_H

#include <utility>
#include <functional>
#include <variant>
#include <type_traits>

template<typename Accessor>
class tuple_iterator
{
public:
    tuple_iterator(Accessor acc, const int idx)
        : acc_(acc), index_(idx)
    {

    }

    tuple_iterator operator++()
    {
        ++index_;
        return *this;
    }

    template<typename T>
    bool operator ==(tuple_iterator<T> other)
    {
        return index_ == other.index();
    }

    template<typename T>
    bool operator !=(tuple_iterator<T> other)
    {
        return index_ != other.index();
    }

    auto operator*() { return std::invoke(acc_, index_); }

    [[nodiscard]] int index() const { return index_; }

private:
    const Accessor acc_;
    int index_;
};

template<bool IsConst, typename...Ts>
struct tuple_access
{
    using tuple_type = std::tuple<Ts...>;
    using tuple_ref = std::conditional_t<IsConst, const tuple_type&, tuple_type&>;

    template<typename T>
    using element_ref = std::conditional_t<IsConst,
        std::reference_wrapper<const T>,
        std::reference_wrapper<T>>;

    using variant_type = std::variant<element_ref<Ts>...>;
    using function_type = variant_type(*)(tuple_ref);
    using table_type = std::array<function_type, sizeof...(Ts)>;

private:
    template<size_t Index>
    static constexpr function_type create_accessor()
    {
        return { [](tuple_ref t) -> variant_type
        {
            if constexpr (IsConst)
                return std::cref(std::get<Index>(t));
            else
                return std::ref(std::get<Index>(t));
        } };
    }

    template<size_t...Is>
    static constexpr table_type create_table(std::index_sequence<Is...>)
    {
        return { create_accessor<Is>()... };
    }

public:
    static constexpr auto table = create_table(std::make_index_sequence<sizeof...(Ts)>{}); 
};

template<bool IsConst, typename...Ts>
class tuple_range
{
public:
    using tuple_access_type = tuple_access<IsConst, Ts...>;
    using tuple_ref = typename tuple_access_type::tuple_ref;

    static constexpr auto tuple_size = sizeof...(Ts);

    explicit tuple_range(tuple_ref tuple)
        : tuple_(tuple)
    {
    }

    [[nodiscard]] auto begin() const 
    { 
        return tuple_iterator{ create_accessor(), 0 };
    }

    [[nodiscard]] auto end() const 
    { 
        return tuple_iterator{ create_accessor(), tuple_size };
    }

private:
    tuple_ref tuple_;

    auto create_accessor() const
    { 
        return [this](int idx)
        {
            return std::invoke(tuple_access_type::table[idx], tuple_);
        };
    }
};

template<bool IsConst, typename...Ts>
auto begin(const tuple_range<IsConst, Ts...>& r)
{
    return r.begin();
}

template<bool IsConst, typename...Ts>
auto end(const tuple_range<IsConst, Ts...>& r)
{
    return r.end();
}

template <class ... Fs>
struct overload : Fs... {
    explicit overload(Fs&&... fs) : Fs{ fs }... {}
    using Fs::operator()...;

    template<class T>
    auto operator()(std::reference_wrapper<T> ref)
    {
        return (*this)(ref.get());
    }

    template<class T>
    auto operator()(std::reference_wrapper<const T> ref)
    {
        return (*this)(ref.get());
    }
};

template <class F>
struct unwrap : overload<F>
{
    explicit unwrap(F&& f) : overload<F>{ std::forward<F>(f) } {}
    using overload<F>::operator();
};

template<typename...Ts>
auto to_range(std::tuple<Ts...>& t)
{
    return tuple_range<false, Ts...>{t};
}

template<typename...Ts>
auto to_range(const std::tuple<Ts...>& t)
{
    return tuple_range<true, Ts...>{t};
}


#endif

การเข้าถึงแบบอ่านอย่างเดียวนอกจากนี้ยังได้รับการสนับสนุนโดยผ่านไปconst std::tuple<>&to_range()


0

เมื่อขยายคำตอบของ @Stypox เราสามารถทำให้โซลูชันของพวกเขาเป็นแบบทั่วไปมากขึ้น (C ++ 17 เป็นต้นไป) โดยการเพิ่มอาร์กิวเมนต์ของฟังก์ชันที่เรียกได้:

template<size_t I = 0, typename... Tp, typename F>
void for_each_apply(std::tuple<Tp...>& t, F &&f) {
    f(std::get<I>(t));
    if constexpr(I+1 != sizeof...(Tp)) {
        for_each_apply<I+1>(t, std::forward<F>(f));
    }
}

จากนั้นเราต้องมีกลยุทธ์ในการเยี่ยมชมแต่ละประเภท

เริ่มต้นด้วยตัวช่วย (สองตัวแรกนำมาจาก cppreference):

template<class... Ts> struct overloaded : Ts... { using Ts::operator()...; };
template<class... Ts> overloaded(Ts...) -> overloaded<Ts...>;
template<class ... Ts> struct variant_ref { using type = std::variant<std::reference_wrapper<Ts>...>; };

variant_ref ใช้เพื่ออนุญาตให้มีการแก้ไขสถานะของ tuples

การใช้งาน:

std::tuple<Foo, Bar, Foo> tuples;

for_each_apply(tuples,
               [](variant_ref<Foo, Bar>::type &&v) {
                   std::visit(overloaded {
                       [](Foo &arg) { arg.foo(); },
                       [](Bar const &arg) { arg.bar(); },
                   }, v);
               });

ผลลัพธ์:

Foo0
Bar
Foo0
Foo1
Bar
Foo1

เพื่อความสมบูรณ์นี่คือBar& Foo:

struct Foo {
    void foo() {std::cout << "Foo" << i++ << std::endl;}
    int i = 0;
};
struct Bar {
    void bar() const {std::cout << "Bar" << std::endl;}
};
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.