I'm writing a template class and at one point in my code would like to be able to value-initialize an object of the parameterized type on the stack. Right now, I'm accomplishing this by writing something to this effect:
template <typename T> void MyClass<T>::doSomething() {
T valueInitialized = T();
/* ... */
}
This code works, but (unless the compiler is smart) it requires an unnecessary creation and destruction of the temporary T
object. What I'd like to write is the following, which I know is incorrect:
template <typename T> void MyClass<T>::doSomething() {
T valueInitialized(); // WRONG: This is a prototype!
/* ... */
}
My question is whether there is a nice way to value-initialize the automatic object without having to explicitly construct a temporary object and assign it over to the automatic object. Can this be done? Or is T var = T();
as good as it gets?