Conditional Expressions and Statements : 08/24/2023
Operations on Variables : 08/23/2023
Variables and Types : 08/22/2023
Welcome to CS 124 : 08/21/2023
Constructors
classDimensions{
valwidth:Double
valheight:Double
constructor(setWidth:Double,setHeight:Double){
width=setWidth
height=setHeight
}
funarea():Double{
returnwidth*height
}
}
valroom=Dimensions(8.8,10.0)
println(room.area())
Let’s continue our discussion of Kotlin objects.
Remember that bit of syntax that looked like a method call when we create a new
Kotlin object?
Well, it was!
Next we’ll talk about what it does.
Each time an instance of a Kotlin class is created, code is run as part of a special function called a constructor.
The best way to see this is to examine a different syntax for class declaration:
classRoom{
varname:String=""
varwidth:Double=0.0
varheight:Double=0.0
}
vallivingRoom=Room()
println(livingRoom.width)
println(livingRoom.name)
livingRoom.name="Living Room"
println(livingRoom.name)
Beginning with the empty constructor class syntax shown above, we can now explicitly declare a constructor method using the following syntax:
classRoom{
varname:String=""
varwidth:Double
varheight:Double
constructor(setWidth:Double,setHeight:Double){
println("I run every time a Room is created!")
width=setWidth
height=setHeight
}
}
// Now we have to pass setWidth and setHeight to the constructor
vallivingRoom=Room(8.0,10.0)
valdiningRoom=Room(10.0,12.0)
However, this pattern of using the constructor to set initial property values is so common that Kotlin provides a shortcut—which we’ve already been using!
Let’s see how:
classRoom{
varname:String=""
varwidth:Double
varheight:Double
constructor(setWidth:Double,setHeight:Double){
println("I run every time a Room is created!")
width=setWidth
height=setHeight
}
}
// Now we have to pass setWidth and setHeight to the constructor
As shown above, Kotlin provides us with two different ways to declare properties on our classes.
First, we can add them to the primary constructor prefaced with val or var:
classPerson(valname:String,varage:Double)
valgeoff=Person("Geoff",41.0)
geoff.age=42.0// Happy birthday!
In this case we must provide the name (String) and age (Double) every time we create a Person.
Alternatively, we can declare the fields inside the class declaration and omit the primary constructor:
classPerson{
varname:String=""
varage:Double=0.0
}
valgeoff=Person()
geoff.name="Geoff"
geoff.age=42.0
In this case we don’t provide the name or age when we create a Person, but each Person still has a name and age property.
In contrast to the example above we also must provide default values for each field, since Kotlin needs to know how to set them since they are not set when the instance is created.
Finally, in this case it usually makes less sense to declare the fields as immutable using val, since to store data in them we will need to change them after the instance is created.
We can also mix these two approaches:
classPerson(valname:String){
varage:Double=0.0
}
valgeoff=Person("Geoff")
geoff.age=42.0
Practice: Kotlin Simple Object Field
Created By: CS 124 Staff
/ Version: 2021.2.0
Create a class called Simple that stores a single mutable Int variable named value.
You can accomplish this in Kotlin with one line of code!
This problem deadline has passed, but you can continue to practice. Experiment! You will not lose credit.
Homework Restricted to Current CS 124 Students
A publicly-accessible version of this content is available at learncs.online.
When if we want to make sure that a person’s age is always positive?
We’d like to continue to use the primary constructor syntax, since it is compact and elegant:
classPerson(valname:String,varage:Double)
However, we also need to run some additional code when the Person is created to make sure that the age is positive.
To do this we can use an initializer block:
classPerson(valname:String,varage:Double){
init{
require(age>=0.0){"People can't have negative ages"}
}
}
valgeoff=Person("Geoff",42.0)
valjustWrong=Person("Bad",-1.0)
init blocks are run every time any constructor is called, and in the order in which they appear in the class.
You can put any code you want in them, and they can be used to set properties during creation and perform other tasks.
Finally, sometimes we want more than one way to create an instance of a class.
For our Person class, perhaps we want to make the age optional and have it be zero by default.
Kotlin provides two ways of doing this.
First, we can use both a primary constructor and one or more secondary constructors:
classPerson(valname:String,varage:Double){
constructor(name:String): this(name, 0.0)
init {
require(age>=0.0){"People can't have negative ages"}
}
}
valgeoff=Person("Geoff",42.0)
valnewPerson=Person("New")
println(newPerson.age)
Note that we now have two constructors: one that takes two arguments (a name and an age) and a second that only takes a name.
This is due to the secondary constructor declared as constructor(name: String) : this(name, 0.0).
Secondary constructors are declared using the constructor syntax we saw above.
But, when a primary constructor exists a secondary constructor must call it using this and pass all of the required fields, as shown above.
However, a better alternative is usually to use default parameter values for the primary constructor:
classPerson(valname:String,varage:Double=0.0){
init{
require(age>=0.0){"People can't have negative ages"}
}
}
valgeoff=Person("Geoff",42.0)
valnewPerson=Person("New")
println(newPerson.age)
We have not discussed default parameter values for Kotlin methods yet, but we will soon.
This approach works for any Kotlin method, including constructors, and allows us to provide default values for any and all required parameters to a method or function.
We’ll return to this, but for now simply observe that it eliminates the need for the secondary constructor.
Practice: Kotlin Simple Object Field 2
Created By: CS 124 Staff
/ Version: 2021.9.0
Create a class called Simple that stores a single mutable String variable named data.
You can accomplish this in Kotlin with one line of code!
This problem deadline has passed, but you can continue to practice. Experiment! You will not lose credit.
Homework Restricted to Current CS 124 Students
A publicly-accessible version of this content is available at learncs.online.
Homework: Kotlin Simple Object Fields 3
Created By: CS 124 Staff
/ Version: 2022.9.0
Create a class called Location that stores two Int values x and y representing the location of a place
on the surface of the Earth.
You can accomplish this in Kotlin with one line of code!
Declare x first.
This problem deadline has passed, but you can continue to practice. Experiment! You will not lose credit.
Homework Restricted to Current CS 124 Students
A publicly-accessible version of this content is available at learncs.online.