C++: Default Copy Constructor

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • A

    C++: Default Copy Constructor

    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



  • Karl Heinz Buchegger

    #2
    Re: C++: Default Copy Constructor



    A wrote:[color=blue]
    >
    > 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.[/color]

    That would be silly.
    Of course it uses the copy constructor for object types.

    --
    Karl Heinz Buchegger
    kbuchegg@gascad .at

    Comment

    • Andrew Koenig

      #3
      Re: Default Copy Constructor

      > A default copy constructor is created for you when you don't specify one[color=blue]
      > yourself. In such case, the default copy constructor will simply do a
      > bitwise copy for primitives (including pointers) and for objects types[/color]
      call[color=blue]
      > their default constructor.[/color]

      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.


      Comment

      • osmium

        #4
        Re: Default Copy Constructor

        Andrew Koenig writes:
        [color=blue][color=green]
        > > 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[/color]
        > call[color=green]
        > > their default constructor.[/color]
        >
        > 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[/color]
        the[color=blue]
        > future.[/color]

        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.


        Comment

        • Ron Natalie

          #5
          Re: Default Copy Constructor


          "A" <A@iprimus.com. au> wrote in message news:3fbcac0a_1 @news.iprimus.c om.au...[color=blue]
          > 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.[/color]

          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.



          Comment

          • Gavin Deane

            #6
            Re: C++: Default Copy Constructor

            "A" <A@iprimus.com. au> wrote in message news:<3fbcac0a_ 1@news.iprimus. com.au>...[color=blue]
            > Hi,[/color]

            Hello
            [color=blue]
            > 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.[/color]

            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.
            [color=blue]
            > Any others points i should know?[/color]

            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

            Comment

            • Joe Hesse

              #7
              Re: Default Copy Constructor

              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:3fbcac0a_1 @news.iprimus.c om.au...[color=blue]
              > 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[/color]
              call[color=blue]
              > their default constructor.
              >
              > Any others points i should know?
              >
              >
              > Regards,
              > A
              >
              >
              >[/color]


              Comment

              • Victor Bazarov

                #8
                Re: Default Copy Constructor

                "Joe Hesse" <joe_hesse@actc x.com> wrote...[color=blue]
                > Why isn't the copy for primitives called a bytewise copy instead of a
                > bitwise copy?[/color]

                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.
                [color=blue]
                > Joe Hesse
                >
                > "A" <A@iprimus.com. au> wrote in message
                > news:3fbcac0a_1 @news.iprimus.c om.au...[color=green]
                > > 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[/color]
                > call[color=green]
                > > their default constructor.
                > >
                > > Any others points i should know?
                > >
                > >
                > > Regards,
                > > A
                > >
                > >
                > >[/color]
                >
                >[/color]


                Comment

                • Ron Natalie

                  #9
                  Re: Default Copy Constructor


                  "Joe Hesse" <joe_hesse@actc x.com> wrote in message news:3fbcf561$0 $41293$a1866201 @newsreader.vis i.com...[color=blue]
                  > Why isn't the copy for primitives called a bytewise copy instead of a
                  > bitwise copy?
                  >[/color]
                  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.


                  Comment

                  • A

                    #10
                    Re: Default Copy Constructor

                    [color=blue]
                    > 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[/color]
                    call[color=blue]
                    > their default constructor.
                    >
                    > Any others points i should know?
                    >
                    >
                    > Regards,
                    > A[/color]

                    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


                    Comment

                    • Karl Heinz Buchegger

                      #11
                      Re: Default Copy Constructor



                      A wrote:[color=blue]
                      >[color=green]
                      > > 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[/color]
                      > call[color=green]
                      > > their default constructor.
                      > >
                      > > Any others points i should know?
                      > >
                      > >
                      > > Regards,
                      > > A[/color]
                      >
                      > 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![/color]

                      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
                      kbuchegg@gascad .at

                      Comment

                      • Gavin Deane

                        #12
                        Re: Default Copy Constructor

                        "A" <A@iprimus.com. au> wrote in message news:<3fbde090_ 1@news.iprimus. com.au>...[color=blue][color=green]
                        > > 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[/color]
                        > call[color=green]
                        > > their default constructor.
                        > >
                        > > Any others points i should know?
                        > >
                        > >
                        > > Regards,
                        > > A[/color]
                        >
                        > 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.[/color]

                        It's not a very good alternative name. Where did you get it from?
                        [color=blue]
                        > It seems that I have confused a few people with my inaccurate statement, so
                        > I will make the following amendments:[/color]

                        You run the risk of continuing to confuse people if you don't change
                        the phrase "default copy constructor"
                        [color=blue]
                        > 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.[/color]

                        Better than the original, but Karl Heinz Buchegger's points are well
                        worth taking note of.

                        GJD

                        Comment

                        • A

                          #13
                          Re: Default Copy Constructor


                          [color=blue][color=green]
                          > > 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[/color]
                          > call[color=green]
                          > > their default constructor.
                          > >
                          > > Any others points i should know?
                          > >
                          > >
                          > > Regards,
                          > > A[/color]
                          >
                          > 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[/color]
                          for[color=blue]
                          > you when you do not explicitly specify one yourself.
                          >
                          > It seems that I have confused a few people with my inaccurate statement,[/color]
                          so[color=blue]
                          > 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[/color]
                          call[color=blue]
                          > 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![/color]

                          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


                          Comment

                          • Gavin Deane

                            #14
                            Re: Default Copy Constructor

                            "A" <A@iprimus.com. au> wrote in message news:<3fbecf38$ 1_1@news.iprimu s.com.au>...

                            <snip>
                            [color=blue]
                            > 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.[/color]

                            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

                            Comment

                            • A

                              #15
                              Re: Default Copy Constructor

                              [color=blue][color=green]
                              > > Edit: An implicit copy constructor is created for you when you don't[/color][/color]
                              specify[color=blue][color=green]
                              > > one yourself. In such case, the implicit copy constructor will simply do[/color][/color]
                              a[color=blue][color=green]
                              > > bitwise copy for primitives (including pointers) and for objects types[/color][/color]
                              call[color=blue][color=green]
                              > > 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.[/color]
                              >
                              > 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[/color]

                              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


                              Comment

                              Working...