Misplaced Pages

Default constructor: Difference between revisions

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.
Browse history interactively← Previous editContent deleted Content addedVisualWikitext
Revision as of 08:58, 7 February 2009 edit121.243.61.82 (talk)No edit summary← Previous edit Latest revision as of 15:57, 31 January 2021 edit undoWOSlinker (talk | contribs)Administrators854,751 editsm change source to syntaxhighlight 
(91 intermediate revisions by 57 users not shown)
Line 1: Line 1:
In computer ], the term '''default constructor''' can refer to a ] that is automatically generated by the compiler in the absence of any programmer-defined constructors (e.g. in Java), and is usually a ]. In other languages (e.g. in C++) it is a constructor that can be called without having to provide any arguments, irrespective of whether the constructor is auto-generated or user-defined. Note that a constructor with formal ]s can still be called without arguments if ]s were provided in the constructor's definition.
{{Mergefrom|Nullary constructor|date=October 2007}}


== C++ ==
A '''default constructor''' is a ] that can be called with no arguments.


In ], the standard describes the default constructor for a class as a ] that can be called with no arguments (this includes a constructor whose parameters all have default arguments).<ref>C++ standard, ISO/IEC 14882:1998, 12.1.5<br />C++ standard, ISO/IEC 14882:2003, 12.1.5</ref> For example:
In ] and ], if (and only if) no constructors (default or non-default) are explicitly defined for a class, then the compiler will provide an implicit default constructor, which is equivalent to a default constructor which is blank. Therefore, a class is not guaranteed to have a default constructor (i.e. when the programmer explicitly defines only non-default constructors). Some programmers explicitly create a default constructor as a matter of habit, so they won't forget later, but this is not required.
<syntaxhighlight lang="cpp">
class MyClass
{
public:
MyClass(); // constructor declared


private:
In C++, arrays only have a default constructor, which constructs each of its elements using the default constructor for their type. It is an error to declare an array of a class type that does not have a default constructor.
int x;
};


MyClass::MyClass() : x(100) // constructor defined
In C++ and Java, if a derived class does not explicitly invoke a constructor of the base class (in C++ in the initializer list, in Java using super() in the first line), then the default constructor is implicitly invoked for the base class. If the base class does not have a default constructor, it is an error.
{
}


int main()
In C++, if an instance field of a class is not explicitly initialized in the initializer list, then the default constructor is invoked to initialize that field. If that type does not have a default constructor, it is an error.
{
MyClass m; // at runtime, object m is created, and the default constructor is called
}
</syntaxhighlight>


When allocating memory dynamically, the constructor may be called by adding parenthesis after the class name. In a sense, this is an explicit call to the constructor:
{{software-stub}}
<syntaxhighlight lang="cpp">
int main()
{
MyClass * pointer = new MyClass(); // at runtime, an object is created, and the
// default constructor is called
}
</syntaxhighlight>


If the constructor does have one or more parameters, but they all have default values, then it is still a default constructor. Remember that each class can have at most one default constructor, either one without parameters, or one whose all parameters have default values, such as in this case:
]
<syntaxhighlight lang="cpp">
class MyClass
{
public:
MyClass (int i = 0, std::string s = ""); // constructor declared


private:
]
int x;
int y;
std::string z;
};

MyClass::MyClass(int i, std::string s) // constructor defined
{
x = 100;
y = i;
z = s;
}
</syntaxhighlight>

In C++, default constructors are significant because they are automatically invoked in certain circumstances; and therefore, in these circumstances, it is an error for a class to not have a default constructor:
* When an object value is declared with no argument list (e.g.: <code>MyClass x;</code>) or allocated dynamically with no argument list (e.g.: <code>new MyClass;</code> or <code>new MyClass();</code>), the default constructor of <code>MyClass</code> is used to initialize the object.
* When an array of objects is declared, e.g. <code>MyClass x;</code>; or allocated dynamically, e.g. <code>new MyClass </code>. The default constructor of <code>MyClass</code> is used to initialize all the elements.
* When a derived class constructor does not explicitly call the base class constructor in its initializer list, the default constructor for the base class is called.
* When a class constructor does not explicitly call the constructor of one of its object-valued fields in its initializer list, the default constructor for the field's class is called.
* In the standard library, certain containers "fill in" values using the default constructor when the value is not given explicitly. E.g. <code>vector<nowiki><MyClass></nowiki>(10);</code> initializes the vector with ten elements, which are filled with a default-constructed <code>MyClass</code> object.

If a class has no explicitly defined constructors, the compiler will implicitly declare and define a default constructor for it. This implicitly defined default constructor is equivalent to an explicitly defined one with an empty body. For example:<ref>Computer Science A Structured Approach Using C++ by Behrouz A. Forouzan and Richard F. Gilberg</ref>
<syntaxhighlight lang="cpp">
class MyClass
{
int x; // no constructor, so the compiler produces an (implicit) default constructor
};

int main()
{
MyClass m; // no error at runtime: the (implicit) default constructor is called
}
</syntaxhighlight>

If constructors are explicitly defined for a class, but they are all non-default, the compiler will not implicitly define a default constructor, leading to a situation where the class does not have a default constructor. This is the reason for a typical error, demonstrated by the following example.
<syntaxhighlight lang="cpp">
class MyClass
{
public:
MyClass (int y); // declaration a non-default constructor

private:
int x;
};

MyClass::MyClass (int y)
{
x = y;
}

int main()
{
MyClass m(100); // the non-default constructor is called
MyClass * p; // for pointer declarations, the compiler does not need to know about constructors
p = new MyClass(); // error at compilation: no default constructor
return 0;
}
</syntaxhighlight>

Since neither the programmer nor the compiler has defined a default constructor, the creation of the objected pointed to by <code>p</code> leads to an error.<ref>Computer Science A Structured Approach Using C++ by Behrouz A. Forouzan and Richard F. Gilberg</ref>

On the other hand in C++11 a default constructor can be explicitly created:
<syntaxhighlight lang="cpp">
class MyClass
{
public:
MyClass () = default; // force generation of a default constructor
};
</syntaxhighlight>

Or explicitly inhibited:
<syntaxhighlight lang="cpp">
class MyClass
{
public:
MyClass () = delete; // prevent generation of default constructor
};
</syntaxhighlight>

== Java and C# ==

In both ] and ], a "default constructor" refers to a ] that is automatically generated by the compiler if no constructors have been defined for the class. The default constructor implicitly calls the superclass's nullary constructor, then executes an empty body. All fields are left at their initial value of 0 (integer types), 0.0 (floating-point types), <code>false</code> (<code>boolean</code> type), or <code>null</code> (reference types). A programmer-defined constructor that takes no parameters is also called a default constructor in ], but not in ].<ref>, "Default Constructor".</ref><ref></ref>

== References ==
<references />

{{DEFAULTSORT:Default Constructor}}
]

Latest revision as of 15:57, 31 January 2021

In computer programming languages, the term default constructor can refer to a constructor that is automatically generated by the compiler in the absence of any programmer-defined constructors (e.g. in Java), and is usually a nullary constructor. In other languages (e.g. in C++) it is a constructor that can be called without having to provide any arguments, irrespective of whether the constructor is auto-generated or user-defined. Note that a constructor with formal parameters can still be called without arguments if default arguments were provided in the constructor's definition.

C++

In C++, the standard describes the default constructor for a class as a constructor that can be called with no arguments (this includes a constructor whose parameters all have default arguments). For example:

class MyClass
{
public:
    MyClass();  // constructor declared
private:
    int x;
};
MyClass::MyClass() : x(100)  // constructor defined
{
}
int main()
{
    MyClass m;  // at runtime, object m is created, and the default constructor is called
}

When allocating memory dynamically, the constructor may be called by adding parenthesis after the class name. In a sense, this is an explicit call to the constructor:

int main()
{
    MyClass * pointer = new MyClass();  // at runtime, an object is created, and the
                                        // default constructor is called
}

If the constructor does have one or more parameters, but they all have default values, then it is still a default constructor. Remember that each class can have at most one default constructor, either one without parameters, or one whose all parameters have default values, such as in this case:

class MyClass
{
public:
    MyClass (int i = 0, std::string s = "");  // constructor declared
private:
    int x;
    int y;
    std::string z;
};
MyClass::MyClass(int i, std::string s)     // constructor defined
{
    x = 100;
    y = i;
    z = s;
}

In C++, default constructors are significant because they are automatically invoked in certain circumstances; and therefore, in these circumstances, it is an error for a class to not have a default constructor:

  • When an object value is declared with no argument list (e.g.: MyClass x;) or allocated dynamically with no argument list (e.g.: new MyClass; or new MyClass();), the default constructor of MyClass is used to initialize the object.
  • When an array of objects is declared, e.g. MyClass x;; or allocated dynamically, e.g. new MyClass . The default constructor of MyClass is used to initialize all the elements.
  • When a derived class constructor does not explicitly call the base class constructor in its initializer list, the default constructor for the base class is called.
  • When a class constructor does not explicitly call the constructor of one of its object-valued fields in its initializer list, the default constructor for the field's class is called.
  • In the standard library, certain containers "fill in" values using the default constructor when the value is not given explicitly. E.g. vector<MyClass>(10); initializes the vector with ten elements, which are filled with a default-constructed MyClass object.

If a class has no explicitly defined constructors, the compiler will implicitly declare and define a default constructor for it. This implicitly defined default constructor is equivalent to an explicitly defined one with an empty body. For example:

class MyClass
{
    int x;  // no constructor, so the compiler produces an (implicit) default constructor
};
int main()
{
    MyClass m;   // no error at runtime: the (implicit) default constructor is called
}

If constructors are explicitly defined for a class, but they are all non-default, the compiler will not implicitly define a default constructor, leading to a situation where the class does not have a default constructor. This is the reason for a typical error, demonstrated by the following example.

class MyClass
{
public:
    MyClass (int y);  // declaration a non-default constructor
private:
    int x;
};
MyClass::MyClass (int y)
{
    x = y;
}
int main()
{
    MyClass m(100);     // the non-default constructor is called
    MyClass * p;        // for pointer declarations, the compiler does not need to know about constructors
    p = new MyClass();  // error at compilation: no default constructor
    return 0;
}

Since neither the programmer nor the compiler has defined a default constructor, the creation of the objected pointed to by p leads to an error.

On the other hand in C++11 a default constructor can be explicitly created:

class MyClass
{
public:
    MyClass () = default;  // force generation of a default constructor
};

Or explicitly inhibited:

class MyClass
{
public:
    MyClass () = delete;  // prevent generation of default constructor
};

Java and C#

In both Java and C#, a "default constructor" refers to a nullary constructor that is automatically generated by the compiler if no constructors have been defined for the class. The default constructor implicitly calls the superclass's nullary constructor, then executes an empty body. All fields are left at their initial value of 0 (integer types), 0.0 (floating-point types), false (boolean type), or null (reference types). A programmer-defined constructor that takes no parameters is also called a default constructor in C#, but not in Java.

References

  1. C++ standard, ISO/IEC 14882:1998, 12.1.5
    C++ standard, ISO/IEC 14882:2003, 12.1.5
  2. Computer Science A Structured Approach Using C++ by Behrouz A. Forouzan and Richard F. Gilberg
  3. Computer Science A Structured Approach Using C++ by Behrouz A. Forouzan and Richard F. Gilberg
  4. Java Language Specification, 3rd edition, section 8.8.9, "Default Constructor".
  5. Using Constructors (C# Programming Guide)
Category: