0
votes
1answer
57 views

c++ is default constructor called in parametrized constructor?

I have the following template class: template<typename T, int nSize> class Stack{ private: int m_nCurrentPos; Array<T> m_tArray; public: Stack(int nCurrentPos = 0); ... }; ...
6
votes
4answers
164 views

Template neglects const (why?)

Does somebody know, why this compiles?? template< typename TBufferTypeFront, typename TBufferTypeBack = TBufferTypeFront> class FrontBackBuffer{ public: FrontBackBuffer( const ...
1
vote
2answers
214 views

Default constructor won't compile inside template class when brackets are included (g++4.6.1)

I couldn't find any information on Google about this, In the following example: #include <iostream> class Default { public: void Print() { std::cout ...
5
votes
2answers
250 views

Why can't I override the default copy constructor and assignment operator with template versions in C++

I asked this question about overloading the copy constructor and assignment operator with template versions and considering the confusion involving around the question (since it seems to be a compiler ...
5
votes
2answers
541 views

Default constructor defined with default arguments outside the class definition, why does this work? and what happens with templates involved?

I am aware this is bad form and that default-values should be specified in the declaration, but if you would please indulge me for a moment.. why does this compile? and what is happening exactly? ...
6
votes
4answers
188 views

Template functions: default construction without copy-constructing in C++

Considering struct C { C() { printf("C::C()\n" ); } C(int) { printf("C::C(int)\n" ); } C( const C& ) { printf("copy-constructed\n"); } }; And a ...