Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    About default constructor

    C++ Gurus
    9
    10
    8176
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • E
      Edico last edited by

      @
      class A {
      public:
      A(int x = 0) { v = x; }
      private:
      int v;
      };
      @

      The definition for default constructor: "The constructor that takes no arguments is known as the default constructor."
      Is A(int x = 0); a default constructor?

      1 Reply Last reply Reply Quote 0
      • H
        HuXiKa last edited by

        As you just said, “The constructor that takes no arguments is known as the default constructor.”
        The A(int x = 0) constructor takes int x as an argument, so no, it isn't a default constructor. The default constructor would be
        @class A {
        public:
        A();
        ...
        @

        If you can find faults of spelling in the text above, you can keep them.

        1 Reply Last reply Reply Quote 0
        • E
          Eddy last edited by

          You can test it yourself. Put a debug in the constructor. Create an instance of A and see if your constructor is called or not.

          Qt Certified Specialist
          www.edalsolutions.be

          1 Reply Last reply Reply Quote 0
          • L
            lgeyer last edited by

            bq.
            "ISO/IEC 14882:2003, 12.1.5":http://cs.nyu.edu/courses/summer11/G22.2110-001/documents/c++2003std.pdf A default constructor for a class X is a constructor of class X that can be called without an argument. If there is no user-declared constructor for class X, a default constructor is implicitly declared.

            [quote author="Edico" date="1311779819"]Is A(int x = 0); a default constructor?[/quote]

            Yes.

            1 Reply Last reply Reply Quote 0
            • G
              giesbert last edited by

              It is a default constuictor as the argument is optional.

              Nokia Certified Qt Specialist.
              Programming Is Like Sex: One mistake and you have to support it for the rest of your life. (Michael Sinz)

              1 Reply Last reply Reply Quote 0
              • D
                dangelog last edited by

                [quote author="Edico" date="1311779819"]The definition for default constructor: "The constructor that takes no arguments is known as the default constructor."[/quote]

                The definition is wrong.

                http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.4

                Software Engineer
                KDAB (UK) Ltd., a KDAB Group company

                1 Reply Last reply Reply Quote 0
                • C
                  Chuck Gao last edited by

                  @A(int x = 0) @
                  is a default constructor with the default argument.

                  if @A(int x)@ without default argument, it's not a default constructor

                  Chuck

                  1 Reply Last reply Reply Quote 0
                  • E
                    Eddy last edited by

                    bq. You can test it yourself. Put a debug in the constructor. Create an instance of A and see if your constructor is called or not.

                    The practical meaning of a default constructor is that if you don't define one yourself the compiler is making one implicitly for you.

                    Have a look at this example :

                    @class A { public:
                    //A(int x = 0) { v = x; cout << " test my constructor";} //just for later use
                    private:
                    int v;
                    }; @

                    So for instance when you use class A in another class B, the default constructor, implicitly created by the compiler, will be called.

                    @class B { public:
                    private:
                    A a;
                    }; @

                    If you uncomment line 2 of class A, you will see the cout message, meaning your constructor is called with no parameter. Thus it's a default constructor. And you as a programmer took control over it.

                    In this example there is no practical need to define one since the result of both will be te same. Of course in real life things aren't that simple ;)

                    Qt Certified Specialist
                    www.edalsolutions.be

                    1 Reply Last reply Reply Quote 0
                    • A
                      AlterX last edited by

                      it's just a defination...the default constructor is always one without parameters (included optional parameters)

                      Qt Ambassador
                      Real-time cooperative teams: http://www.softairrealfight.net
                      Free Real-time network platform sdk: https://github.com/AlterX76/Solomon

                      https://codereview.qt-project.org/...

                      1 Reply Last reply Reply Quote 0
                      • G
                        goetz last edited by

                        The C++ standard is very clear about what a default constructor is (section 12.1, number 5):

                        [quote]
                        A default constructor for a class X is a constructor of class X that can be called without an argument. If there is no user-declared constructor for class X, a default constructor is implicitly declared. [...]
                        [/quote]

                        http://www.catb.org/~esr/faqs/smart-questions.html

                        1 Reply Last reply Reply Quote 0
                        • First post
                          Last post