vote up 5 vote down star

Is it possible to typedef long types that use templates? For example:

template <typename myfloat_t>
class LongClassName
{
    // ...
};

template <typename myfloat_t>
typedef std::vector< boost::shared_ptr< LongClassName<myfloat_t> > > LongCollection;

LongCollection<float> m_foo;

This doesn't work, but is there a way to achieve a similar effect? I just want to avoid having to type and read a type definition that covers almost the full width of my editor window.

flag

5 Answers

vote up 13 vote down check

No, that isn't possible currently. It will be made possible in C++0X AFAIK.

The best I can think of is

template<typename T> struct LongCollection {
    typedef std::vector< boost::shared_ptr< LongClassName<T> > > type;
};

LongCollection<float>::type m_foo;
link|flag
That works...but you will have to duplicate all your ctors. – James Curran Oct 30 '08 at 19:38
duplicate all your ctors? – dalle Oct 30 '08 at 19:51
Indeed, duplicate all your ctors?? – mch Oct 30 '08 at 20:00
By the way, duplicate all your ctors??? – Nicola Bonelli Oct 30 '08 at 20:02
That was my question too! – Leon Timmermans Oct 30 '08 at 20:04
show 1 more comment
vote up 3 vote down

If you don't want to go the macro way you have to make individual typedefs for each type:

typedef std::vector< boost::shared_ptr< LongClassName<float> > > FloatCollection;
typedef std::vector< boost::shared_ptr< LongClassName<double> > > DoubleCollection;
link|flag
This is, after all, how std::string is a typedef of std::basic_string. – Max Lybbert Oct 30 '08 at 19:51
vote up 2 vote down

No, but you can get close using a 'helper' type, see this example.

link|flag
vote up 2 vote down

The solution shown by Leon is canonical. Bit of background knowledge: This is called a “(template) metafunction” because it is basically a “function” that gets evaluated at compile time. Instead of values, it deals with types: There's a list of input types (the type arguments) and there's a “return value”: The typedef that declares the type name “type”.

“Invocation” works analogously to normal function invocation, albeit with a different syntax:

// Normal function
result = f(args);

// Metafunction
typedef f<args>::type result;

This code construct is an often-used idiom in libraries such as the Boost libraries and even in the STL at one place: allocator_type::rebind<U>::other accomplishes the same thing with the only difference that the typedef type is called other.

link|flag
I think you mean 'temlate metafunction'. :) – Dean Michael Oct 31 '08 at 7:36
Yea, plus the “p”. ;-) Thanks. – Konrad Rudolph Oct 31 '08 at 22:32
vote up 1 vote down

Its not exactly what you're asking for, but this might achieve the desired effect depending on your actual situation:

template <typename myfloat_t>
class LongClassName
{
    // ...
};

template <typename myfloat_t>
class LongCollection : public std::vector< boost::shared_ptr< LongClassName<myfloat_t> > > 
{
};

You may need to add some constructors or operators depending on your needs.

link|flag
Isn't deriving from STL collections considered bad? They do not have virtual functions. I think it would be safer to implement LongCollection in terms of a std::vector by using is as a member variable. Private inheritance may also be an option. – mch Oct 30 '08 at 19:58
It's not considered good practice but it doesn't actually pose the problems you mention as long as you don't intend for polymorphic usage. – Konrad Rudolph Oct 30 '08 at 21:00

Your Answer

Get an OpenID
or

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