एक क्लासिक अस्थायी समस्या। यहाँ एक सरल उपाय है जैसे कि C ++ मानक पुस्तकालय कैसे करता है। मूल विचार एक पुनरावर्ती टेम्पलेट है जो किसी भी प्रकार के लिए 0 के आधार मामले के साथ प्रत्येक आयाम को एक-एक करके गिना जाएगा, जो कि एक वेक्टर नहीं है।
#include <vector>
#include <type_traits>
template<typename T>
struct dimensions : std::integral_constant<std::size_t, 0> {};
template<typename T>
struct dimensions<std::vector<T>> : std::integral_constant<std::size_t, 1 + dimensions<T>::value> {};
template<typename T>
inline constexpr std::size_t dimensions_v = dimensions<T>::value; // (C++17)
तो आप इसे इस तरह इस्तेमाल कर सकते हैं:
dimensions<vector<vector<vector<int>>>>::value; // 3
// OR
dimensions_v<vector<vector<vector<int>>>>; // also 3 (C++17)
संपादित करें:
ठीक है, मैंने किसी भी कंटेनर प्रकार के लिए सामान्य कार्यान्वयन समाप्त कर लिया है। ध्यान दें कि मैंने एक कंटेनर प्रकार को कुछ भी परिभाषित किया है जिसमें अभिव्यक्ति के अनुसार एक अच्छी तरह से गठित इट्रेटर प्रकार है begin(t)
जहां std::begin
एडीएल लुकअप के लिए आयात किया t
जाता है और यह प्रकार का एक प्रकार है T
।
यहाँ मेरा कोड टिप्पणियों के साथ यह समझाने के लिए है कि सामान क्यों काम करता है और परीक्षण के मामले जो मैंने उपयोग किए थे। ध्यान दें, यह संकलन करने के लिए C ++ 17 की आवश्यकता है।
#include <iostream>
#include <vector>
#include <array>
#include <type_traits>
using std::begin; // import std::begin for handling C-style array with the same ADL idiom as the other types
// decide whether T is a container type - i define this as anything that has a well formed begin iterator type.
// we return true/false to determing if T is a container type.
// we use the type conversion ability of nullptr to std::nullptr_t or void* (prefers std::nullptr_t overload if it exists).
// use SFINAE to conditionally enable the std::nullptr_t overload.
// these types might not have a default constructor, so return a pointer to it.
// base case returns void* which we decay to void to represent not a container.
template<typename T>
void *_iter_elem(void*) { return nullptr; }
template<typename T>
typename std::iterator_traits<decltype(begin(*(T*)nullptr))>::value_type *_iter_elem(std::nullptr_t) { return nullptr; }
// this is just a convenience wrapper to make the above user friendly
template<typename T>
struct container_stuff
{
typedef std::remove_pointer_t<decltype(_iter_elem<T>(nullptr))> elem_t; // the element type if T is a container, otherwise void
static inline constexpr bool is_container = !std::is_same_v<elem_t, void>; // true iff T is a container
};
// and our old dimension counting logic (now uses std:nullptr_t SFINAE logic)
template<typename T>
constexpr std::size_t _dimensions(void*) { return 0; }
template<typename T, std::enable_if_t<container_stuff<T>::is_container, int> = 0>
constexpr std::size_t _dimensions(std::nullptr_t) { return 1 + _dimensions<typename container_stuff<T>::elem_t>(nullptr); }
// and our nice little alias
template<typename T>
inline constexpr std::size_t dimensions_v = _dimensions<T>(nullptr);
int main()
{
std::cout << container_stuff<int>::is_container << '\n'; // false
std::cout << container_stuff<int[6]>::is_container<< '\n'; // true
std::cout << container_stuff<std::vector<int>>::is_container << '\n'; // true
std::cout << container_stuff<std::array<int, 3>>::is_container << '\n'; // true
std::cout << dimensions_v<std::vector<std::array<std::vector<int>, 2>>>; // 3
}
std::vector
रन-टाइम चीज़ है, संकलन-टाइम नहीं है। यदि आप एक संकलन-समय आकार कंटेनर चाहते हैं, तो देखेंstd::array
। इसके अलावा, याद रखें किconstexpr
केवल इसका मतलब है " संकलन समय पर मूल्यांकन किया जा सकता है" - कोई वादा नहीं है कि यह होगा । इसका मूल्यांकन रन-टाइम पर किया जा सकता है।