Java Constructor Basics: What They Are & How to Use Them

Athena Ozanich
Athena Ozanich

Updated:

Published:

One of the most common tasks you will complete in software development is constructing objects and class instances in Java. Constructors are required for many of Java’s objects and should be created for any class you make.

Woman taking notes on Java constructors and how she can use them.

This post covers the Java constructor and its purpose when developing Java language software. In this post, you will learn what a Java constructor is, discover its syntax, and learn how they work. You will also see some code examples of how to use them in software development and why creating constructors for your classes is vital for the development process.

Download Now: 25 Free HTML & CSS Hacks

What is a constructor in Java?

In Java, a constructor is a term that describes a line of code used to create an instance of a class object. Since a Java class serves as a blueprint for a reusable object, Java language developers made a way to construct a copy of class objects.

The method for doing this is a simple and commonly used technique and simplifies the process of creating objects. Using the new keyword, you can call on a class to create a new instance of that class as an object that developers can manipulate to serve a specific purpose. Check out the video below for more information on constructors, getters and setters.

 

The method for doing this is a simple and commonly used technique and simplifies the process of creating objects. Using the new keyword, you can call on a class to create a new instance of that class as an object that developers can manipulate to serve a specific purpose.

  • A constructor must hold the same case-sensitive name as the class it belongs to.
  • Constructors do not return a type, unlike methods.
  • Constructors are only called one at the time of object creation.

Now that we have discussed the basics of a Java constructor let’s look at the syntax for creating one.

 
class TimeLord
{
//The Constructor
TimeLord() {}
}
TimeLord doctorWho = new TimeLord();

The above code is an example of a very basic constructor, showing the class, the constructor, and the use of the constructor to create a new TimeLord.

Within the TimeLord class is a constructor with the same name. The constructor syntax looks similar to the syntax used to instantiate a new TimeLord object. The defining difference is the curly braces at the end of the constructor; the code below highlights this.

 
//The Constructor
TimeLord() {
};

All of this neat information is well and good; however, the real power of constructors goes deeper as there are many other benefits to them. So next, let’s look at some examples of ways you can create and use constructors in your software.

How to Make a Constructor in Java

There is much more to constructors than just declaring them in a class. For example, a constructor can perform actions meant to satisfy the requirements of the class it belongs to on the instantiation of a new object. Let’s consider a use case and build an example using that.

When creating a video game, you decide that TimeLords will be a type of character that you need to create for the storyline. They will have two attributes: a name and age. So, you create a class with two variables and a constructor that assigns a value to them on object creation. The following code snippet illuminates this process by showcasing the code used to create the constructor with parameters.

 
class TimeLord{
   String name;
   int age;

    TimeLord(String name, int age) {
      this.name = name;
      this.age = age;
   }
}

With the class and constructor set up, you can now use the constructor to create an object instance of the class. Calling the constructor is done the same way as shown earlier, with one exception; now, you will pass the values that belong to the object into the parenthesis. The code below shows how to do this.

 
TimeLord doctorWho = new TimeLord(“Doctor Who”, 405);

The above code creates an instance of the TimeLord class, with the name of “Doctor Who” and an age of 405.

Note: When passing data into the constructor, the values must match the order and type declared in the class creation. See below for an example of this requirement.

 
TimeLord(String name, int age) {
   this.name = name;
   this.age = age;
}
TimeLord doctorWho = new TimeLord(“Doctor Who”, 405);

Now that we have covered that, let's look at an entire code snippet of this character class example.

Java Constructor Example

When creating a class, there are often many inner workings that add robust functionality to your them. A constructor is one of those; using a constructor, you can ensure that when an object instance of your class is created, it has all the necessary information to perform as expected. In addition, constructors can contain and accept as many parameters as you would like. Before you dive into the code examples ahead, watch this next video for more information on creating constructors.

 

 

Let's consider a character creation task at the start of the game, which requires some information to be provided to create your character.

 
class TimeLord{
   String name;
   int age;
   String height;
   int currRegen;

   TimeLord(String name, int age, String height, int currRegen) {
      this.name = name;
      this.age = age;
      this.height = height;
      this.currRegen = currRegen;
   }
}

Assuming the above class, attributes, and the declared constructor, you would need to provide four pieces of information to create your character. The TimeLord character object will require the user to enter a name, an age, a height, and the number of times their character has regenerated. The code within the main class of the program would look a little like the following code snippet.

 
public class Main {
   public static void main(String[] args) {
      TimeLord doctorWho = new TimeLord("Doctor Who", 405, "5'11", 10);
   }
}

The above code snippet creates a new instance of a TimeLord and assigns attribute values to the object using static data. This approach would be a great way to set default values for the character to serve as a placeholder until the user enters their information. Then you could use the entered data to assign the attribute values dynamically.

The last important detail is constructor overloading. Constructor overloading is the practice of creating multiple constructors to allow for different ways to construct an object instance. The process is the same as declaring one constructor with only one difference.

Each additional constructor must be structured to accept different parameters, different parameter types, and/or the number of parameters. Let’s look at that briefly, then wrap up with a recap and tips.

 
TimeLord(String name) {
   this.name = name;
}
TimeLord(int age) {
   this.age = age;
}
TimeLord(String name, int age) {
      this.name = name;
      this.age = age;
}

Even though the last constructor consists of the same attributes, all three constructors will be differentiated based on the number of parameters and the types. The first two constructors are different because they used other parameters, and the final constructor is different because it has two parameters.

Moving Forward With Using Java Constructors in Your Software

Java constructors are a reasonably simple concept, though they are very powerful and make creating object instances more manageable. You’ve discovered the syntax, behavior, use, and benefits of the Java constructor and a viable practical example of a constructor at work.

Solidifying your understanding of them and how they work is best done through practice and repetition. The best way to familiarize yourself with the behavior and nuances of Java constructors is to play around with them and test their limitations.

New Call-to-action

 

Topics: Java

Related Articles

We're committed to your privacy. HubSpot uses the information you provide to us to contact you about our relevant content, products, and services. You may unsubscribe from these communications at any time. For more information, check out our Privacy Policy.

Learn more about HTML and CSS and how to use them to improve your website.