I am training my template skills in C++ and want to implement a vector class. The class is defined by the vector dimension N and the type T. Now I would like to have a constructor that takes exactly N variables of type T. However I can't get my head around how to tell the variadic template to only accept N parameters. Maybe this is possible with template specialization? Or am I thinking in the wrong direction? Any thoughts/ideas on this would be greatly appreciated.

More thoughts

All examples on variadic templates I already saw used recursion to "iterate" through the parameter list. However I have in mind that constructors can not be called from constructors (read the comments in the answer). So maybe it is not even possible to use variadic templates in constructors? Anyway that would only defer me to the usage of a factory function with the same basic problem.

link|improve this question

Well, I think that Luc Danton answered before your edit, so where did it came from? – Griwes Oct 11 '11 at 11:57
@Griwes: Yes indeed, what do you mean with 'where did it came from'? – Nobody Oct 11 '11 at 11:58
I mean your edit ;) – Griwes Oct 11 '11 at 12:03
@Griwes: Now I understand what you mean^^ I revised my wording several times, so I started editing before I saw his post but finished after him. – Nobody Oct 11 '11 at 12:41
feedback

1 Answer

up vote 7 down vote accepted

A variadic constructor seems appropriate:

template<typename T, int Size>
struct vector {
    template<typename... U>
    explicit
    vector(U&&... u)
        : data {{ std::forward<U>(u)... }}
    {
        static_assert( sizeof...(U) == Size, "Wrong number of arguments provided" );
    }

    T data[Size];
};

This example uses perfect forwarding and and static_assert to generate a hard-error if not exactly Size arguments are passed to the constructor. This can be tweaked:

  • you can turn the hard-error into a soft-error by using std::enable_if (triggering SFINAE); I wouldn't recommend it
  • you can change the condition to be sizeof...(U) <= Size, letting the remaining elements to be value initialized
  • you can require that the types passed to the constructor are convertible to T, or exactly match e.g. T const&; either turning a violation into a hard-error (using static_assert again) or a soft-error (SFINAE again)
link|improve this answer
Why U and not T? (out of interest)... – Nim Oct 11 '11 at 11:54
Very nice I did not think of the initialization via list. That solves the recursion problem if there is one. So is there one? ^^ @Nim: He already used T for another type, so it is only logic to take it's successor as next typename. – Nobody Oct 11 '11 at 11:57
@Nim U is a template parameter to the constructor (which is a member template of a template). Using T would mean shadowing the template parameter of vector and is not allowed. – Luc Danton Oct 11 '11 at 12:01
...oops missed the point about convertible types... – Nim Oct 11 '11 at 12:02
1  
@Nobody Constructors can call other constructors in C++11 (this feature is called 'delegating constructors'; look for it on e.g. SO to learn more), you could recurse with those (but I think a variadic helper could suffice here). Note that not many compilers support it that feature yet. I wouldn't recommend recursion as recursively constructing an array is awkward. – Luc Danton Oct 11 '11 at 12:03
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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