473,662 Members | 2,406 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Reg. For copy constructor.

Hi,

I know What is the copy constructor. I don't know where and why we have
to use copy constructor. If You know please give to me with a situation
where we have to use or with a small example.
I am waiting for your reply.

Thanks & Regards,
Sai Kishore

May 16 '06 #1
7 2678
The copy constructor is used whenever an object needs to be copied,
i.e.:

class foo { ... }

main() {
foo x;

func(x);
}
func(foo y)
{
....
}

when you call func and pass your object x, the copy constructor is
called to make y in the foo method.

If you dont supply a copy constructor, the compiler will make its own,
but it may or may not do what you really need (for example, if your
class holds pointers, etc).

May 16 '06 #2
Hello,

Yes, I understood some thing. But, I didn't got complete idea.Here,
pssing a value from the function , then copy constructor will called or
compiler will generate default copy constructor .
Is there any other situation where the copy constructor will be called?
Suppose If i never supply a copy constructor , Then at every time
compiler only will generate a copy constructor?
I am very thankful to Your valuable response.

May 16 '06 #3
sk*******@yahoo .co.in wrote:
Yes, I understood some thing.
Of what? Please quote context.
But, I didn't got complete idea.Here, pssing a value from the function ,
then copy constructor will called or compiler will generate default copy
constructor .
Is there any other situation where the copy constructor will be called?
The copy constructor will be used whenever you copy an object.
Suppose If i never supply a copy constructor , Then at every time
compiler only will generate a copy constructor?


Not sure what you mean by "every time". If you mean that every class that
you create without a user-defined copy constructor will get a
compiler-generated one, then you're right.

May 16 '06 #4
Avi
Whenever a object needs to be copied, copy constructor is called. There
are three situations where copy constructor is called.....
(1) Explicitly:
Suppose there is a class ABC, then in the following cases at 2nd
line of code, copy constructor is called.
ABC a1;
ABC a2 = a1; ...... 2nd line
(2) When a object is passed by value to called function.
(3) When a object is returned by value from called function.

Thanks,

sk*******@yahoo .co.in wrote:
Hi,

I know What is the copy constructor. I don't know where and why we have
to use copy constructor. If You know please give to me with a situation
where we have to use or with a small example.
I am waiting for your reply.

Thanks & Regards,
Sai Kishore


May 16 '06 #5
"Avi" <ra**********@g mail.com> wrote in message
news:11******** *************@j 33g2000cwa.goog legroups.com...
Whenever a object needs to be copied, copy constructor is called. There
are three situations where copy constructor is called.....
(1) Explicitly:
Suppose there is a class ABC, then in the following cases at 2nd
line of code, copy constructor is called.
ABC a1;
ABC a2 = a1; ...... 2nd line
(2) When a object is passed by value to called function.
(3) When a object is returned by value from called function.

Thanks,

sk*******@yahoo .co.in wrote:
Hi,

I know What is the copy constructor. I don't know where and why we have
to use copy constructor. If You know please give to me with a situation
where we have to use or with a small example.
I am waiting for your reply.

Thanks & Regards,
Sai Kishore


(1)
ABC a2 = a1;

may seem to require operator=( const ABC& ), but it does not. It uses
copy-ctor.

(2)
void fun( ABC a ) // copy-ctor is used
{
}

void main()
{
ABC x;
fun( x );
}

(3)
ABC fun() // copy-ctor is used
{
ABC a;
return a;
}

void main()
{
ABC x = fun();
}

If you do not supply copy-ctor, compiler will generate one. This will copy
each byte in source to destionation, so it will cause problems. Because of
this, I always write following line in my class, even I do not implement it.
It avoids compiler generated copy-ctor and you will get compiler error if
you try to use copy-ctor.

private:
ABC( const ABC& source );
ABC& operator=( const ABC& source );

Compiler will generate assignment operator too, if you do not supply one! In
the case above, I have supplied it, but with missing implementation.

(2)
You can avoid copy-ctor, if fou declare it in this way. It's faster too.

void fun( const ABC& a )
{
}

const says to the caller that fun does not modify the object.

HTH,
JMu
May 17 '06 #6
Jarmo Muukka wrote:
(1)
ABC a2 = a1;

may seem to require operator=( const ABC& ), but it does not. It uses
copy-ctor.

(2)
void fun( ABC a ) // copy-ctor is used
{
}

void main()
main() returns an int, always.
{
ABC x;
fun( x );
}

(3)
ABC fun() // copy-ctor is used
{
ABC a;
return a;
}

void main()
idem.
{
ABC x = fun();
}

If you do not supply copy-ctor, compiler will generate one. This will copy
each byte in source to destionation,
No, it will call operator= for every member.
so it will cause problems. Because of
this, I always write following line in my class, even I do not implement it.
It avoids compiler generated copy-ctor and you will get compiler error if
you try to use copy-ctor.

private:
ABC( const ABC& source );
ABC& operator=( const ABC& source );

Compiler will generate assignment operator too, if you do not supply one! In
the case above, I have supplied it, but with missing implementation.


This is useful if you class does not support copy or if it is not yet
implemented. This will catch errors at link time. However, if your
class may be copied and the generated copy constructor or assignment
operator are okay, just let the compiler do its job.
Jonathan

May 17 '06 #7

Jonathan Mcdougall wrote:
Jarmo Muukka wrote:
If you do not supply copy-ctor, compiler will generate one. This will copy
each byte in source to destionation,
No, it will call operator= for every member.


For a compiler generated copy constructor?

The compiler generated copy constructor will call the copy constructor
for every base and member. The compiler generated assignment operator
will call the assignment operator, that is operator=, for every base
and member.

<snip>
However, if your
class may be copied and the generated copy constructor or assignment
operator are okay, just let the compiler do its job.


Definitely.

Gavin Deane

May 17 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

42
5757
by: Edward Diener | last post by:
Coming from the C++ world I can not understand the reason why copy constructors are not used in the .NET framework. A copy constructor creates an object from a copy of another object of the same kind. It sounds simple but evidently .NET has difficulty with this concept for some reason. I do understand that .NET objects are created on the GC heap but that doesn't mean that they couldn't be copied from another object of the same kind when...
15
21186
by: A | last post by:
Hi, A default copy constructor is created for you when you don't specify one yourself. In such case, the default copy constructor will simply do a bitwise copy for primitives (including pointers) and for objects types call their default constructor. Any others points i should know?
8
20021
by: Jesper | last post by:
Hi, Does the concept "copy constructor" from c++ excist in c#. What is the syntax. best regards Jesper.
10
2559
by: utab | last post by:
Dear all, So passing and returning a class object is the time when to include the definition of the copy constructor into the class definition. But if we don't call by value or return by value, we do not need to use the copy-constructor. So depending on the above reasoning I can avoid call by value and return by value for class objects, this bypasses the problem or it seems to me like that. Could any one give me some simple examples...
8
4292
by: shuisheng | last post by:
Dear All, I am wondering how the default copy constructor of a derived class looks like. Does it look like class B : public A { B(const B& right) : A(right) {}
22
3608
by: clicwar | last post by:
A simple program with operator overloading and copy constructor: #include <iostream> #include <string> using namespace std; class Vector { private: float x,y; public: Vector(float u, float v);
9
2887
by: puzzlecracker | last post by:
From my understanding, if you declare any sort of constructors, (excluding copy ctor), the default will not be included by default. Is this correct? class Foo{ public: Foo(int); // no Foo() is included, i believe. };
0
8432
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8343
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8856
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8633
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7365
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6185
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5653
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4347
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1747
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.