What is the right way of initializing a static map? Do we need a static function that will initialize it?
|
|
Using Boost.Assign:
|
||||||||||||||
|
|
|
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. |
||||
|
|
|
Best way is to use a function:
|
||
|
|
|
|
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: 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: I used a different operator for adding the actual values. You can change it () if you prefer it. |
|||
|
|
|
|
This is similar to
|
||||
|
