up vote 2 down vote favorite
2
share [g+] share [fb]

Instead of using

std::vector<Object> ObjectArray;

I would like it to be

MyArray<Object> ObjectArray;

with all the std::vector methods preserved. (like push_back(), reserve(), ...etc)

However, using

typedef std::vector MyArray;

won't work. Should I use template instead? How?

Thanks in advance.

link|improve this question

69% accept rate
Could you elaborate on why you would want this? – Dave Van den Eynde Feb 13 '09 at 8:23
3  
@Eydne, What if he wants to change MyArray to a std::list under the hood without breaking existing code? – strager Feb 13 '09 at 21:17
feedback

2 Answers

up vote 9 down vote accepted

What you would really want is a templated typedef. Unfortunately those are not supported in the current version of C++, but they will be added in C++0x.

For now, here's a possible workaround:

template<class T> struct My {
    typedef std::vector<T> Array;
};

My<Object>::Array ObjectArray

Whether or not that is better than simply using std::vector directly, I'll leave to you to decide.

link|improve this answer
Greg, thanks for fixing my syntax. Can you tell that I've been using a lot of Java lately? ;) – Thomas Feb 13 '09 at 19:43
Clever use of metaprogramming. – spoulson Feb 13 '09 at 21:21
feedback

Another way:

#include <vector>

template <typename T>
struct MyArray
    :std::vector<T>
{
};

void func()
{
    MyArray<int> my;

    my.push_back(5);

    MyArray<int>::iterator i;
}

Compiles for me, but you may find that some things available in vector<> need to be "pulled up" into MyArray.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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