Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C++ > Templates, copy ctor and type-conversion ctor

Reply
Thread Tools

Templates, copy ctor and type-conversion ctor

 
 
NVH
Guest
Posts: n/a
 
      06-24-2006
I know that this question may have been asked before but I can't
find it here so:
If there is a class:
class Foo
{
...
Foo (const Foo &num); // Copy constructor

template <typename T>
Foo (const T &num); // Conversion constructor
...
}

Then what's wrong with it and how can I fix it so that it may act
like this?

Thank you for any response to this.

 
Reply With Quote
 
 
 
 
mlimber
Guest
Posts: n/a
 
      06-25-2006
NVH wrote:
> I know that this question may have been asked before but I can't
> find it here so:
> If there is a class:
> class Foo
> {
> ...
> Foo (const Foo &num); // Copy constructor
>
> template <typename T>
> Foo (const T &num); // Conversion constructor
> ...
> }
>
> Then what's wrong with it and how can I fix it so that it may act
> like this?


What exactly are you trying (but failing) to do?

> Thank you for any response to this.


Oh, you're welcome.

Cheers! --M

 
Reply With Quote
 
 
 
 
Jim Langston
Guest
Posts: n/a
 
      06-25-2006
"NVH" <> wrote in message
news: s.com...
> I know that this question may have been asked before but I can't
> find it here so:
> If there is a class:
> class Foo
> {
> ...
> Foo (const Foo &num); // Copy constructor
>
> template <typename T>
> Foo (const T &num); // Conversion constructor
> ...
> }
>
> Then what's wrong with it and how can I fix it so that it may act
> like this?


I don't know, what's wrong with it? What's the problem? Does it not
compile? Does it not work the way you expect it?

And act like what? You gotta tell us what the problem is.

> Thank you for any response to this.



 
Reply With Quote
 
NVH
Guest
Posts: n/a
 
      06-28-2006
Yeah, sorry about that.
Here's a more clear one:

===================================
#include <iostream>
using namespace std;

class Foo
{
public:

Foo (const Foo &num)
{
number = num.number;
cout << 1 << endl;
} // Copy constructor

template <typename T>
Foo (const T &num)
{
number = num;
cout << 2 << endl;
} // Conversion constructor

void print (void)
{
cout << number << endl;
}
private:
auto int number; // Complier points to here for 1st
error
};

void main (void)
{
auto Foo G(5);
auto Foo H(G); // Compiler points to here for 2nd error

G.print(); // Display the content
H.print(); // Display the content
}
========================================

The compiler keeps on saying:
error C2071: 'number' : illegal storage class
error C2668: 'Foo::Foo' : ambiguous call to overloaded
function

Agian, thanks for any help is apreciated.

 
Reply With Quote
 
gottlobfrege@gmail.com
Guest
Posts: n/a
 
      06-28-2006

NVH wrote:
> Yeah, sorry about that.
> Here's a more clear one:
>
> ===================================
> #include <iostream>
> using namespace std;
>
> class Foo
> {
> public:
>
> Foo (const Foo &num)
> {
> number = num.number;
> cout << 1 << endl;
> } // Copy constructor
>
> template <typename T>
> Foo (const T &num)
> {
> number = num;
> cout << 2 << endl;
> } // Conversion constructor
>
> void print (void)
> {
> cout << number << endl;
> }
> private:
> auto int number; // Complier points to here for 1st
> error
> };
>
> void main (void)
> {
> auto Foo G(5);
> auto Foo H(G); // Compiler points to here for 2nd error
>
> G.print(); // Display the content
> H.print(); // Display the content
> }
> ========================================
>
> The compiler keeps on saying:
> error C2071: 'number' : illegal storage class
> error C2668: 'Foo::Foo' : ambiguous call to overloaded
> function
>
> Agian, thanks for any help is apreciated.


first error: you can't use auto here, in a struct/class - only in a
function, but you shouldn't even bother using it there either.
2nd: I suspect it is confused between the 2 constructors - either would
work. Although I would think it should choose the non-templated
version. What compiler are you using?

-Tony

 
Reply With Quote
 
mlimber
Guest
Posts: n/a
 
      06-28-2006
NVH wrote:
> Yeah, sorry about that.
> Here's a more clear one:
>
> ===================================
> #include <iostream>
> using namespace std;
>
> class Foo
> {
> public:
>
> Foo (const Foo &num)
> {
> number = num.number;
> cout << 1 << endl;
> } // Copy constructor
>
> template <typename T>
> Foo (const T &num)
> {
> number = num;
> cout << 2 << endl;
> } // Conversion constructor
>
> void print (void)
> {
> cout << number << endl;
> }
> private:
> auto int number; // Complier points to here for 1st
> error


Drop the auto. It's illegal here since you're not actually allocating
anything but rather just declaring a class that will be allocated
(either automatically or dynamically) later.

> };
>
> void main (void)
> {
> auto Foo G(5);
> auto Foo H(G); // Compiler points to here for 2nd error


Again, drop the auto. It's legal here, but it's the default, and no one
uses it since it only adds clutter and verbosity.

> G.print(); // Display the content
> H.print(); // Display the content
> }
> ========================================
>
> The compiler keeps on saying:
> error C2071: 'number' : illegal storage class
> error C2668: 'Foo::Foo' : ambiguous call to overloaded
> function


The problem is not with the code. It is legal, and various relatively
conformant compilers accept it fine (once the auto is deleted above,
that is). Thus, I will venture to guess that you are using VC++ 6,
which is non-conformant when it comes to templates. If that is the
case, you'll want to upgrade or search for a work-around that is
suitable for your situation. One might be to get rid of the copy
constructor Foo::Foo(const Foo&). For others, you'll want to ask in
Microsoft newsgroup since this is a compiler-specific issue. Several
such groups can be found here:

http://www.parashift.com/c++-faq-lit...t.html#faq-5.9

Cheers! --M

 
Reply With Quote
 
NVH
Guest
Posts: n/a
 
      07-06-2006
Sorry it takes so long for me to respond. I'm using Microsoft
Visual C++. I got rid of all the "auto" in the code (even the "auto"
next to "int") but the 2nd error still exist.
Thanks for responding to my problem.

 
Reply With Quote
 
NVH
Guest
Posts: n/a
 
      07-06-2006
I just got rid of the copy constructor and it work so Thanks
a lot to both you and Tony. But quick question: If I wanted to have
the copy constructor to do something else rather then the template,
what would I have to do?
For example I'd like something like this:
class Foo
{
public:

Foo (const Foo &num)
{
number = num;
cout << 3 << endl;
} // Copy constructor

template <typename T>
Foo (const T &num)
{
number = num;
cout << 2 << endl;
} // Conversion constructor

void print (void)
{
cout << number << endl;
}
private:
int number;
};

void main (void)
{
Foo G(5);
Foo H(G);

G.print(); // Display the content
H.print(); // Display the content
}

I'd like "2" to be printed out if the inputted type ("T") is not of
type Foo and "3" to be printed out if the type ("T") is of type Foo.

Thanks agian for your help.

 
Reply With Quote
 
mlimber
Guest
Posts: n/a
 
      07-06-2006
NVH wrote:
> I just got rid of the copy constructor and it work so Thanks
> a lot to both you and Tony. But quick question: If I wanted to have
> the copy constructor to do something else rather then the template,
> what would I have to do?
> For example I'd like something like this:
> class Foo
> {
> public:
>
> Foo (const Foo &num)
> {
> number = num;
> cout << 3 << endl;
> } // Copy constructor
>
> template <typename T>
> Foo (const T &num)
> {
> number = num;
> cout << 2 << endl;
> } // Conversion constructor
>
> void print (void)
> {
> cout << number << endl;
> }
> private:
> int number;
> };
>
> void main (void)
> {
> Foo G(5);
> Foo H(G);
>
> G.print(); // Display the content
> H.print(); // Display the content
> }
>
> I'd like "2" to be printed out if the inputted type ("T") is not of
> type Foo and "3" to be printed out if the type ("T") is of type Foo.
>
> Thanks agian for your help.


The easiest way is to upgrade to a better compiler that won't barf on
valid code. You can download a free one from Microsoft.

Cheers! --M

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
conditions for automatic generation of default ctor, copy ctor,and default assignment operator (operator) puzzlecracker C++ 8 04-15-2008 09:56 PM
reference to pointer used in ctor (using 'this' in ctor) Anonymous C++ 2 08-28-2007 01:10 PM
copy ctor vs default ctor subramanian100in@yahoo.com, India C++ 2 08-15-2007 10:49 AM
ctor/dtor calls and ctor init seq Grizlyk C++ 8 11-29-2006 06:35 AM
three times copy ctor called, one ctor called, why? Apricot C++ 4 04-16-2004 07:55 AM



Advertisments