C++Talk.NET Forum Index C++Talk.NET
C++ language newsgroups
 
Archives   FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

define a copy constructor in a class having data member as a

 
Post new topic   Reply to topic    C++Talk.NET Forum Index -> C++ language (comp.lang.c++)
View previous topic :: View next topic  
Author Message
Guest






PostPosted: Thu Nov 09, 2006 10:11 am    Post subject: define a copy constructor in a class having data member as a Reply with quote



Hi,
can anyone help me by writing a sample code of defining a copy
constructor in a class having data member as an object of another
class.
for eg:
class A{
int x;
public: A(){ x=6;}
};

class B{
A a1;
public:B(B &b1)
{ ???} //how i can assign the data members??
};

Any idea ...Thanks
Back to top
Greg
Guest





PostPosted: Thu Nov 09, 2006 10:11 am    Post subject: Re: define a copy constructor in a class having data member Reply with quote



dalu.gelu (AT) gmail (DOT) com wrote:
Quote:
can anyone help me by writing a sample code of defining a copy
constructor in a class having data member as an object of another
class.
for eg:
class A{
int x;
public: A(){ x=6;}
};

class B{
A a1;
public:B(B &b1)
{ ???} //how i can assign the data members??
};

Like so:

class B
{
public:
B( B& b1 )
: a1( b1.a1 )
{
}
};

Greg
Back to top
Greg
Guest





PostPosted: Thu Nov 09, 2006 10:11 am    Post subject: Re: define a copy constructor in a class having data member Reply with quote



dalu.gelu (AT) gmail (DOT) com wrote:
Quote:
Hi,
can anyone help me by writing a sample code of defining a copy
constructor in a class having data member as an object of another
class.
for eg:
class A{
int x;
public: A(){ x=6;}
};

class B{
A a1;
public:B(B &b1)
{ ???} //how i can assign the data members??
};

Like so:

class B
{
A a1;

public:
B( B& b1 ) : a1( b1.a1 )
{ }
};

Greg
Back to top
VJ
Guest





PostPosted: Thu Nov 09, 2006 10:11 am    Post subject: Re: define a copy constructor in a class having data member Reply with quote

dalu.gelu (AT) gmail (DOT) com wrote:
Quote:
Hi,
can anyone help me by writing a sample code of defining a copy
constructor in a class having data member as an object of another
class.
for eg:
class A{
int x;
public: A(){ x=6;}
};

class B{
A a1;
public:B(B &b1)
{ ???} //how i can assign the data members??
};

Any idea ...Thanks


1) add a public method to class A to assign a value to x
2) make class B friend of class A
Back to top
Display posts from previous:   
Post new topic   Reply to topic    C++Talk.NET Forum Index -> C++ language (comp.lang.c++) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2006 phpBB Group
SEO toolkit © 2004-2006 webmedic.