আপনি এটি চেষ্টা করতে পারেন:
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.
আমি আমার মূল পোস্টটি সম্পাদনা করেছি, আমি যে মূল কোডটির জন্য পোস্ট করেছিলাম তাতে কোনও ভুল ছিল না যা সঠিকভাবে সংকলিত, নির্মিত এবং চালানো হয়েছিল, এটি ছিল আমার প্রথম সংস্করণটি উত্তর হিসাবে মানচিত্রটিকে সর্বজনীন হিসাবে ঘোষণা করা হয়েছিল এবং মানচিত্রটি ছিল কনস্ট কিন্তু অচল ছিল না।