आप यह कोशिश कर सकते हैं:
MyClass.h
class MyClass {
private:
static const std::map<key, value> m_myMap;
static const std::map<key, value> createMyStaticConstantMap();
public:
static std::map<key, value> getMyConstantStaticMap( return m_myMap );
}; //MyClass
MyClass.cpp
#include "MyClass.h"
const std::map<key, value> MyClass::m_myMap = MyClass::createMyStaticConstantMap();
const std::map<key, value> MyClass::createMyStaticConstantMap() {
std::map<key, value> mMap;
mMap.insert( std::make_pair( key1, value1 ) );
mMap.insert( std::make_pair( key2, value2 ) );
// ....
mMap.insert( std::make_pair( lastKey, lastValue ) );
return mMap;
} // createMyStaticConstantMap
इस कार्यान्वयन के साथ आपकी कक्षाएं निरंतर स्थैतिक मानचित्र एक निजी सदस्य हैं और सार्वजनिक प्राप्त विधि का उपयोग करके अन्य वर्गों के लिए सुलभ हो सकता है। अन्यथा चूंकि यह स्थिर है और इसे बदल नहीं सकते हैं, आप सार्वजनिक प्राप्त विधि को हटा सकते हैं और मानचित्र चर को सार्वजनिक अनुभाग में स्थानांतरित कर सकते हैं। हालाँकि, अगर मैं इनहेरिटेंस और पॉलीमॉर्फिज़्म की आवश्यकता है, तो मैं प्राइवेट बनाने की विधि को छोड़ दूंगा या संरक्षित करूंगा। यहाँ उपयोग के कुछ नमूने दिए गए हैं।
std::map<key,value> m1 = MyClass::getMyMap();
// then do work on m1 or
unsigned index = some predetermined value
MyClass::getMyMap().at( index ); // As long as index is valid this will
// retun map.second or map->second value so if in this case key is an
// unsigned and value is a std::string then you could do
std::cout << std::string( MyClass::getMyMap().at( some index that exists in map ) );
// and it will print out to the console the string locted in the map at this index.
//You can do this before any class object is instantiated or declared.
//If you are using a pointer to your class such as:
std::shared_ptr<MyClass> || std::unique_ptr<MyClass>
// Then it would look like this:
pMyClass->getMyMap().at( index ); // And Will do the same as above
// Even if you have not yet called the std pointer's reset method on
// this class object.
// This will only work on static methods only, and all data in static methods must be available first.
मैंने अपना मूल पोस्ट संपादित किया था, मूल कोड के साथ कुछ भी गलत नहीं था, जिसमें मैंने इसके लिए संकलित, निर्मित और सही तरीके से पोस्ट किया था, यह सिर्फ इतना था कि मेरा पहला संस्करण मैंने एक उत्तर के रूप में प्रस्तुत किया था जिसे मानचित्र सार्वजनिक घोषित किया गया था और नक्शा था कास्ट लेकिन स्थिर नहीं था।