Java Constructors Flashcards
It is a special method that is used to initialize objects.
Constructor
This is called when an object of a class is created. It can be used to set initial values for object attributes.
Constructor
In java, a _____ is a block of codes similar to the method. It is called when an instance of the class is created. At the time of calling it, memory for the object is allocated in the memory.
Constructor
It is a special type of method which is used to initialized the object.
Constructors
Every time an object is created using the _____ keyword, at least one constructor is called.
new()
Rules for creating Java Constructor (3):
- Constructor name must be the same as its class name
- Must have no return type
- Cannot be abstract, static, final, and synchroized
Types of Java Constructor (2):
- Default Constructor
- Parameterized Constructor
A constructor is called ______ when it doesn’t have any parameter.
Default Constructor
<class_name>()
{
}
</class_name>
Syntax of default constructor
If there is no constructor in a class, compiler _________ a default constructor.
automatically creates
Purpose of a default constructor:
- Provide default values to the object like 0, null, etc., depending on the type.
A constructor which has a specific number of parameters is called
Parameterized Constructor
Why use Parameterized Constructor?
- used to provide different values to distinct objects. However, you can provide the same values also.
In Java, a _______is just like a method but without return type. It can also be overloaded like Java methods.
Constructor
a technique of having more than one constructor with different parameter lists. They are arranged in a way that each constructor performs a different task. They are differentiated by the compiler by the number of parameters in the list and their types.
Constructor Overloading
Difference Between constructor and method in Java (5)(5):
Constructor:
1. Used to Initialize the state of an object.
Method:
1. Used to expose the behavior of an object
Constructor:
2. Must not have a return type.
Method:
2. A method must have a return type.
Constructor:
3. invoked implicitly
Method:
3. Invoked Explicitly
Constructor:
4. compiler provides a default constructor if you don’t have any constructor in a class.
Method:
4. Not provided by the compiler in any case
Constructor:
5. name must be same as the class name.
Method:
5. method name may or may not be same as the class name.