What is the right way of initializing a static map? Do we need a static function that will initialize it?
|
Using Boost.Assign:
Using C++11:
|
|||||||||||||||||||||
|
|
It's not a complicated issue to make something similar to boost. Here's a class with just three functions, including the constructor, to replicate what boost did (almost).
Usage: std::map mymap = create_map<int, int >(1,2)(3,4)(5,6); The above code works best for initialization of global variables or static members of a class which needs to be initialized and you have no idea when it gets used first but you want to assure that the values are available in it. If say, you've got to insert elements into an existing std::map... here's another class for you.
Usage:
See it in action with GCC 4.7.2 here: http://ideone.com/3uYJiH ############### EVERYTHING BELOW THIS IS OBSOLETE ################# EDIT: The
Usage: std::map<int, int> my_map; // Later somewhere along the code map_add_values<int,int>(my_map)(1,2)(3,4)(5,6); NOTE: Previously I used a ##################### END OF OBSOLETE SECTION ##################### |
|||||||||||||
|
|
Best way is to use a function:
|
|||||||||||
|
|
Here is another way that uses the 2-element data constructor. No functions are needed to initialize it. There is no 3rd party code (Boost), no static functions or objects, no tricks, just simple C++:
Since I wrote this answer C++11 is out. You can now directly initialize STL containers using the new initializer list feature:
|
||||
|
|
|
I would wrap the map inside a static object, and put the map initialisation code in the constructor of this object, this way you are sure the map is created before the initialisation code is executed. |
|||||
|
|
This is similar to
|
|||||||||
|