πŸ“š

Β >Β 

πŸ’»Β 

Β >Β 

βš™οΈ

5.2 Constructors

2 min readβ€’december 28, 2022

Athena_Codes

Athena_Codes

Milo Chang

Milo Chang


AP Computer Science AΒ πŸ’»

130Β resources
See Units

The Student Class

Let's start writing our classes by declaring our instance variables and class headers for the Student class:
public class Student { private int gradeLevel; private String name; private int age; private Assignment assignment; }
Now, we need to make our constructor for the Student class. The constructor will need to initialize all the above instance variables and allow the client to have the opportunity to set some of the variables to values of their own choosing. For this, we are allowing gradeLevel, name, and age to be set. These will be our constructor parameters with initial values.
An object’s state refers to its attributes and their values at a given time; the state is defined by instance variables belonging to the object. Constructors are used to set the initial state of an object, which should include initial values for all instance variables.
We will first make the full constructor below and then write the overloaded constructors in Topic 5.9.
public class Student { private int gradeLevel; private String name; private int age; private Assignment assignment; public Student(int gradeLev, String fullName, int ageNum) { gradeLevel = gradeLev; name = fullName; age = ageNum; assignment = null; } }
When a constructor is called, the parameters are local variables, which means that the variables are only defined inside that constructor. Notice how the parameter names are different than the names of the instance variables. In Topic 5.9 we will learn how to keep both as the same name which is the conventional way to do it.
If one of the parameters for the constructor is a mutable object (meaning that its state can be changed after it has already been created), the instance variable should be initialized with a copy of the object referenced in the parameter. This keeps us from accidentally changing the state of the original object.
Before we move on to the constructor for the Assignment class, if we don't include a constructor for a class, and we try to make a new object, Java will automatically create a default constructor with default values set for the instance variables. Here is a list of them for certain data types:

Default Values by Data Type

Data TypeValue
Booleanfalse
Double0.0
Integer0
Objects/Reference TypesNull

The Assignment Class

With that, let's do the same with the Assignment class.
public class Assignment { private boolean correctAnswer; public Assignment(boolean answer) { correctAnswer = answer; } }
To see how constructors are used to create instances of a class, you can visit Topic 2.2!
Browse Study Guides By Unit
βž•Unit 1 – Primitive Types
πŸ“±Unit 2 – Using Objects
πŸ–₯Unit 3 – Boolean Expressions & if Statements
πŸ•ΉUnit 4 – Iteration
βš™οΈUnit 5 – Writing Classes
⌚️Unit 6 – Array
πŸ’ΎUnit 7 – ArrayList
πŸ’»Unit 8 – 2D Array
πŸ–²Unit 9 – Inheritance
πŸ–±Unit 10 – Recursion

Fiveable
Fiveable
Home
Stay Connected

Β© 2024 Fiveable Inc. All rights reserved.


Β© 2024 Fiveable Inc. All rights reserved.