System::TupleFactory class

TupleFactory class

ट्यूपल वस्तुओं को बनाने के लिए स्थैतिक मेथड प्रदान करता है।

class TupleFactory

विधियाँ

विधिविवरण
static Create(Args…)एक नया ट्यूपल ऑब्जेक्ट बनाता है।
static Create(T1, T2, T3, T4, T5, T6, T7, TRest)एक नया 8-ट्यूपल बनाता है। 8वाँ तत्व Tuple के भीतर संग्रहीत किया जाता है।

टिप्पणियाँ

#include "system/smart_ptr.h"
#include "system/tuple.h"
#include <iostream>

int main()
{
  const auto tuple = System::TupleFactory::Create(256, 16, 64);

  std::cout <<
    "Item 1: " << tuple->get_Item<0>() << std::endl <<
    "Item 2: " << tuple->get_Item<1>() << std::endl <<
    "Item 3: " << tuple->get_Item<2>() << std::endl;

  return 0;
}
/*
This code example produces the following output:
Item 1: 256
Item 2: 16
Item 3: 64
*/

संबंधित देखें