vote up 4 vote down star

C++ 0x has template typedefs. See here. Current spec of C++ does not.

What do you like to use as work around ? Container objects or Macros ? Do you feel its worth it ?

flag

75% accept rate

3 Answers

vote up 14 vote down check

What do you like to use as work around ? Container objects or Macros ? Do you feel its worth it ?

The canonical way is to use a metafunction like thus:

template <typename T>
struct my_string_map {
    typedef std::map<std::string, T> type;
};

// Invoke:

my_string_map<int>::type my_str_int_map;

This is also used in the STL (allocator::rebind<U>) and in many libraries including Boost. We use it extensively in a bioinformatical library.

It's bloated, but it's the best alternative 99% of the time. Using macros here is not worth the many downsides.

(EDIT: I've amended the code to reflect Boost/STL conventions as pointed out by Daniel in his comment.)

link|flag
If you use 'type' instead of 'Type' (or in addition to) this will work better with Boost.MPL. Which can be useful, so I think it's a good convention to encourage. – Daniel James Sep 16 '08 at 11:44
vote up 0 vote down

GOTW dealt with this topic a while ago: http://www.gotw.ca/gotw/079.htm

link|flag
vote up 0 vote down

How about this?

template <typename T>
struct my_string_map : public std::map<std::string,T> 
{
};

// Invoke:

my_string_map<int> my_str_int_map;
link|flag

Your Answer

Get an OpenID
or

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