Re: How = delete would work ?
On 10 ???, 23:27, SG <s.gesem...@gmail.com> wrote:
Such a constructor template *in isolation* doesn't prevent the
compiler from generating its own copy constructor but it (the
template) can be used to copy the object. This example compiles using g
++ 3.4.5:
class A {
A(A&);
public:
A() {}
template<typename T>
A(T const&) {}
};
void f(A a);
void test() {
const A a;
f(a);
}
MSVC sees an ambiguity here, the same for example by Richard. Is this
just another MSVC bug ?
Since A::A(A&) is declared the compiler won't generate another copy
constructor. Yet, pass-by-value works via the constructor template.
Anyway, I'm still confused. Assuming a class with deleted copy
constructor with non-const refererence and template unary constructor,
taking const reference to template parameter class, like in original
example. Which is true:
1. The class can be copied if it has constness, so the behaviour of "=
delete" is the same as having a special function declared and not
defined (as "Triple-DES" noted).
2. The class can always be copied, = delete would make the copy
constructor not exist, so there's no other choice than template
constructor. So, "= delete" brings something new to this.
3. Can this be used to make constructor with more than one arguments
act as copy constructor ? example:
struct B
{
B() {}
B(B&) = delete;
B(B const&, int = 0) {}
};
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]