खोज…


टिप्पणियों

वर्ग std::any एक प्रकार-सुरक्षित कंटेनर प्रदान करता है, जिसमें हम किसी भी प्रकार के एकल मान रख सकते हैं।

मूल उपयोग

std::any an_object{ std::string("hello world") };
if (an_object.has_value()) {
    std::cout << std::any_cast<std::string>(an_object) << '\n';
}

try {
  std::any_cast<int>(an_object);
} catch(std::bad_any_cast&) {
    std::cout << "Wrong type\n";
}

std::any_cast<std::string&>(an_object) = "42";
std::cout << std::any_cast<std::string>(an_object) << '\n';

उत्पादन

hello world
Wrong type
42


Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow