The copy-initialization tag has no wiki summary.
6
votes
6answers
185 views
Strange behavior of copy-initialization, doesn't call the copy-constructor!
I was reading the difference between direct-initialization and copy-initialization (ยง8.5/12):
T x(a); //direct-initialization
T y = a; //copy-initialization
What I understand from reading about ...
5
votes
2answers
145 views
no matching function in template class
I get no matching member function error when i try to compile this code on my mingw32 compiler
#include <iostream>
using std::cout;
template <class T>
class Pattern
{
public:
...
4
votes
2answers
371 views
When should you use direct initialization and when copy initialization?
Is it simply preference or are there specific instances where one is necessary over another? I'm refering to the following variants for initialization
T t(e); // direct initialization
T t = e; // ...