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?
Regards,
A 15 21102
A wrote: 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.
That would be silly.
Of course it uses the copy constructor for object types.
--
Karl Heinz Buchegger kb******@gascad.at
> 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.
Why think of it that way? Aside from it being incorrect, I mean.
If you got at explanation from a book, I suggest you avoid that book in the
future.
The default copy constructor for a class copies the (non-static) data
members of the class. Exactly what it means to copy the member depends on
the member's type, just as the meaning of copying any object depends on the
object's type.
Andrew Koenig writes: 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.
Why think of it that way? Aside from it being incorrect, I mean.
If you got at explanation from a book, I suggest you avoid that book in
the future.
I rarely pile on during "bad book" crusades. But I will make an exception
for that book. Sometimes there is an innocuous statement that is wrong in a
pedant's eyes but harmless; there is no way I could construe that as
harmless.
"A" <A@iprimus.com.au> wrote in message news:3f********@news.iprimus.com.au... 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.
Default copy constructor is a bit confusing terminology. I prefer "implicitly
defined" or "compiler generated' constructor.
The implicitly defined copy constructor invokes the copy constructor (not
the default) to copy all the subobjects.
"A" <A@iprimus.com.au> wrote in message news:<3f********@news.iprimus.com.au>... Hi,
Hello
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.
There is no such thing as a default copy constructor. There are
default constructors and copy constructors and they are different
things.
The implicitly defined copy constructor (which I think is what you
mean by "default copy constructor") will copy non-static members of
class type using their copy constructor, not their default
constructor. The implicitly defined copy constructor is used when you
don't define your own copy constructor.
Any others points i should know?
Undoubtedly :) But it would help if you were a bit more specific. Have
you come across some code you can't figure out, or a passage in a text
book you don't understand?
GJD
Why isn't the copy for primitives called a bytewise copy instead of a
bitwise copy?
Joe Hesse
"A" <A@iprimus.com.au> wrote in message
news:3f********@news.iprimus.com.au... 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?
Regards, A
"Joe Hesse" <jo*******@actcx.com> wrote... Why isn't the copy for primitives called a bytewise copy instead of a bitwise copy?
If by "primitives" you (and "A") mean "members", then it's called
"member-wise" copy. Every member is copied using its copy c-tor
(and if it's a built-in type, like a pointer), using the built-in
mechanism of copy-initialisation.
Joe Hesse
"A" <A@iprimus.com.au> wrote in message news:3f********@news.iprimus.com.au... 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?
Regards, A
"Joe Hesse" <jo*******@actcx.com> wrote in message news:3f***********************@newsreader.visi.com ... Why isn't the copy for primitives called a bytewise copy instead of a bitwise copy?
I'm not sure why it's called either one. Each subobject is copied according
to its own copy semantics, be it via copy constructor or by some internal
means. Most implementations copy things in bigger increments than bits
OR bytes when necesssary. 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?
Regards, A
Firstly, i would like to point out that a default copy constructor is just
another name for the implicitly defined copy constructor that is created for
you when you do not explicitly specify one yourself.
It seems that I have confused a few people with my inaccurate statement, so
I will make the following amendments:
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 copy constructor. If in the later case, a copy constructor is not
explicitly defined then, in turn, a default copy constructor will be
implicitly created.
I believe this is ROCK SOLID now!
Regards,
A
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system ( http://www.grisoft.com).
Version: 6.0.538 / Virus Database: 333 - Release Date: 10/11/2003
A wrote: 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?
Regards, A
Firstly, i would like to point out that a default copy constructor is just another name for the implicitly defined copy constructor that is created for you when you do not explicitly specify one yourself.
It seems that I have confused a few people with my inaccurate statement, so I will make the following amendments:
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 copy constructor. If in the later case, a copy constructor is not explicitly defined then, in turn, a default copy constructor will be implicitly created.
I believe this is ROCK SOLID now!
not really.
It is not consistent with the use of the word 'default' in conjunction
with the word 'constructor'.
A default constructor is a constructor which can be called without
specifying arguments.
Thus
C::C(); is a default constructor
C::C( int i = 0 ); is a default constructor
C::C( in j ); is *not* a default constructor, because it can only
be used if some argument is specified.
So the meaning of 'default' in the context of constructors has nothing to do
with who created the function, either the programmer or the compiler. It has
to do with beeing able to be called without arguments.
That's why there is no 'default copy constructor', because a copy constructor
per definition has to be called with an argument: the object to make a copy from.
Also: replace the action a compiler generated copy constructor does with:
... the compiler generated copy constructor does a member wise copy of
its members. For builtin types (including pointers) this means a bitwise
copy. For other types the copy constructor of the member is used.
It is not the constructor which decides how this copy should be done. It
is the member which decides this.
Drop the last sentence ( "If in the later case, .... " ), it is not needed
and follows from the beginning of your paragraph ( "A default copy constructor
is cretaed for you when ..." ).
The compiler will always generate a cctor if none is specified, if it
needs one. This does include but is not restricted to: if used in another
constructor.
--
Karl Heinz Buchegger kb******@gascad.at
"A" <A@iprimus.com.au> wrote in message news:<3f********@news.iprimus.com.au>... 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?
Regards, A
Firstly, i would like to point out that a default copy constructor is just another name for the implicitly defined copy constructor that is created for you when you do not explicitly specify one yourself.
It's not a very good alternative name. Where did you get it from?
It seems that I have confused a few people with my inaccurate statement, so I will make the following amendments:
You run the risk of continuing to confuse people if you don't change
the phrase "default copy constructor"
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 copy constructor. If in the later case, a copy constructor is not explicitly defined then, in turn, a default copy constructor will be implicitly created.
Better than the original, but Karl Heinz Buchegger's points are well
worth taking note of.
GJD 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?
Regards, A
Firstly, i would like to point out that a default copy constructor is just another name for the implicitly defined copy constructor that is created
for you when you do not explicitly specify one yourself.
It seems that I have confused a few people with my inaccurate statement,
so I will make the following amendments:
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 copy constructor. If in the later case, a copy constructor is not explicitly defined then, in turn, a default copy constructor will be implicitly created.
I believe this is ROCK SOLID now!
After further reading, it seems I may have still confused people. Let me
clarify once again.
Edit: An implicit copy constructor is created for you when you don't specify
one yourself. In such case, the implicit copy constructor will simply do a
bitwise copy for primitives (including pointers) and for objects types call
their copy constructor. If in the later case, a copy constructor is not
explicitly defined then, in turn, an implicit copy constructor will be
created.
Regards,
A
"A" <A@iprimus.com.au> wrote in message news:<3f**********@news.iprimus.com.au>...
<snip> After further reading, it seems I may have still confused people. Let me clarify once again.
Edit: An implicit copy constructor is created for you when you don't specify one yourself. In such case, the implicit copy constructor will simply do a bitwise copy for primitives (including pointers) and for objects types call their copy constructor. If in the later case, a copy constructor is not explicitly defined then, in turn, an implicit copy constructor will be created.
I think that's cleared up the confusion. The last sentence isn't
strictly necessary as it logically follows from the first sentence.
But it does no harm and may help to clarify things for the reader.
There is just one technical nit to pick though (not related to the
original confusion). In the last sentence, change "defined" to
"declared". You could change "specify" to "declare" in the first
sentence too.
Whether the compiler is allowed use the implicit copy constructor
depends on whether you have _declared_ one yourself, not on whether
you have _defined_ one. So this class
class C
{
public:
C() {}
private:
C(const C& rhs); // no definition provided for
// this copy ctor.
};
can not be copied. A copy constructor is explicitly declared (though
it's not defined anywhere) so when the compiler encounters
void f()
{
C c1; // OK, used default constructor
C c2(c1); // Error
}
it can not use the implicit copy constructor on the error line because
there is a copy constructor declared in the class
hth ;-)
GJD Edit: An implicit copy constructor is created for you when you don't
specify one yourself. In such case, the implicit copy constructor will simply do
a bitwise copy for primitives (including pointers) and for objects types
call their copy constructor. If in the later case, a copy constructor is not explicitly defined then, in turn, an implicit copy constructor will be created.
I think that's cleared up the confusion. The last sentence isn't strictly necessary as it logically follows from the first sentence. But it does no harm and may help to clarify things for the reader.
There is just one technical nit to pick though (not related to the original confusion). In the last sentence, change "defined" to "declared". You could change "specify" to "declare" in the first sentence too.
Whether the compiler is allowed use the implicit copy constructor depends on whether you have _declared_ one yourself, not on whether you have _defined_ one. So this class
class C { public: C() {}
private: C(const C& rhs); // no definition provided for // this copy ctor. };
can not be copied. A copy constructor is explicitly declared (though it's not defined anywhere) so when the compiler encounters
void f() { C c1; // OK, used default constructor C c2(c1); // Error }
it can not use the implicit copy constructor on the error line because there is a copy constructor declared in the class
hth ;-) GJD
point taken.
Edit: An implicit copy constructor is created for you when you don't declare
one yourself. In such case, the implicit copy constructor will simply do a
bitwise copy for primitives (including pointers) and for objects types call
their copy constructor. If in the later case, a copy constructor is not
explicitly declared then, in turn, an implicit copy constructor will be
created.
Regards,
A
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system ( http://www.grisoft.com).
Version: 6.0.538 / Virus Database: 333 - Release Date: 10/11/2003
"A" <A@iprimus.com.au> wrote in message news:<3f********@news.iprimus.com.au>... Edit: An implicit copy constructor is created for you when you don't specify one yourself. In such case, the implicit copy constructor will simply do a bitwise copy for primitives (including pointers) and for objects types call their copy constructor. If in the later case, a copy constructor is not explicitly defined then, in turn, an implicit copy constructor will be created. I think that's cleared up the confusion. The last sentence isn't strictly necessary as it logically follows from the first sentence. But it does no harm and may help to clarify things for the reader.
There is just one technical nit to pick though (not related to the original confusion). In the last sentence, change "defined" to "declared". You could change "specify" to "declare" in the first sentence too.
Whether the compiler is allowed use the implicit copy constructor depends on whether you have _declared_ one yourself, not on whether you have _defined_ one.
<snip>
point taken.
Edit: An implicit copy constructor is created for you when you don't declare one yourself. In such case, the implicit copy constructor will simply do a bitwise copy for primitives (including pointers) and for objects types call their copy constructor. If in the later case, a copy constructor is not explicitly declared then, in turn, an implicit copy constructor will be created.
Regards, A
I'd go with that.
GJD This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Marcelo Pinto |
last post by:
Hi all,
In practice, what is the diference between a default constructor and
an explicit default constructor?
class Ai
{
public:
Ai() {}
};
|
by: sujilc |
last post by:
This question seems to be silly. Can ony one figure out the default
functions implemented by compiler when we decalre a class like
class A
{
}
According to me this declaration will define...
|
by: Zytan |
last post by:
I have a struct constructor to initialize all of my private (or public
readonly) fields. There still exists the default constructor that sets
them all to zero. Is there a way to remove the...
|
by: Jess |
last post by:
Hello,
I understand the default-initialization happens if we don't initialize
an object explicitly. I think for an object of a class type, the
value is determined by the constructor, and for...
|
by: Jess |
last post by:
Hello,
I tried several books to find out the details of object
initialization. Unfortunately, I'm still confused by two specific
concepts, namely default-initialization and...
|
by: JohnQ |
last post by:
Are a default constructor, destructor, copy constructor and assignment
operator generated by the compiler for a struct if they are not explicitely
defined?
I think the answer is yes, because...
|
by: subramanian100in |
last post by:
If we provide any ctor for a class the compiler does not supply the
default ctor.
However if we do not provide the copy ctor but provide any other ctor,
the compiler still supplies the copy ctor....
|
by: JosephLee |
last post by:
In Inside C++ object Model, Lippman said there are four cases in which
compile will sythesize a default constructor to initialize the member
variables if the constructor is absent:
1. there is a...
|
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...
|
by: linyimin |
last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
|
by: erikbower65 |
last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA:
1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
|
by: kcodez |
last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 6 Sept 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: Taofi |
last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same
This are my field names
ID, Budgeted, Actual, Status and Differences
...
|
by: Rina0 |
last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: lllomh |
last post by:
How does React native implement an English player?
|
by: Mushico |
last post by:
How to calculate date of retirement from date of birth
| |