vote up 10 vote down star
1

What is the right way of initializing a static map? Do we need a static function that will initialize it?

flag

5 Answers

vote up 19 vote down

Using Boost.Assign:

#include <map>
#include "boost/assign.hpp"
using namespace std;
using namespace boost::assign;


map<int, int> m = map_list_of (1,2) (3,4) (5,6) (7,8);
link|flag
1  
Every time I see something like that done with C++, I think of all the horrendous template code that must be behind it. Good example! – Greg Hewgill Sep 26 '08 at 10:22
I know what you mean, but in this case I don't think it would be that bad. I think it just overrides operator() to insert a pair into the map and returns a reference to the object so that you can chain calls. – Ferruccio Sep 26 '08 at 10:30
It is implemented "basically" as an overloaded operator, but if you ever have a syntax error, enjoy that line of code. It pulls in 15 different .hpp's for something that would take you a minute or two. Code for fun? Use it; otherwise, consider the cost to time/size. – hazzen Sep 26 '08 at 14:23
Boost is great. Wonderful stuff in there. Problem in my case : we can't use it as a company guideline. Not standard enough, not easy enough for the average developer ( not my phrasing ). – QBziZ Sep 26 '08 at 23:54
2  
The beauty of all the horrendous template code that implements these utilities is that it is neatly encapsulated in a library and the end user rarely needs to deal with the complexity. – Steve Guidi Nov 13 at 18:09
vote up 8 vote down

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.

link|flag
I'm with you on this one. It's also a tad faster :) – QBziZ Sep 26 '08 at 23:52
Tad faster than what? A global static with an initializer? No, it's not (remember about RVO). – Pavel Minaev Nov 13 at 19:30
vote up 13 vote down

Best way is to use a function:

#include <map>

using namespace std;

map<int,int> create_map()
{
  map<int,int> m;
  m[1] = 2;
  m[3] = 4;
  m[5] = 6;
  return m;
}

map<int,int> m = create_map();
link|flag
vote up 9 vote down

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).

template <typename T, typename U>
class create_map
{
private:
    std::map<T, U> m_map;
public:
    create_map(const T& key, const U& val)
    {
        m_map[key] = val;
    }

    create_map<T, U>& operator()(const T& key, const U& val)
    {
        m_map[key] = val;
        return *this;
    }

    operator std::map<T, U>()
    {
        return m_map;
    }
};
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.


template<typename T, typename U>
class map_add_values
{
private:
    std::map<T,U>& m_map;
public:
    map_add_values(std::map<T, U>& _map):m_map(_map){}
    map_add_values& operator[](const T& _key, const U& _val)
    {
        m_map[key] = val;
        return *this;
    }
};

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.

link|flag
vote up 0 vote down

This is similar to PierreBdR, without copying the map.

#include <map>

using namespace std;

bool create_map(map<int,int> &m)
{
  m[1] = 2;
  m[3] = 4;
  m[5] = 6;
  return true;
}

static map<int,int> m;
static bool _dummy = create_map (m);
link|flag
3  
It probably wouldn't have been copied anyway. – GMan Nov 13 at 19:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.