3.9. this Keyword¶
Within an instance method or a constructor, the keyword this acts as a special variable that holds a reference to the current object—the object whose method or constructor is being called.
For example, in the following Class Person, when we create an object p1 and call the constructor or p1.setEmail(), the word “this” refers to p1. And when we make the same method calls with object p2, “this” refers to p2. Run the code below and also check it out in the Java visualizer with the Show CodeLens button which shows how this refers to different objects when the code is run.
Observe the use of the keyword this in the code below. Click on the CodeLens button and then forward to see the memory in action.
The this variable can only be used in instance methods and constructors. Class methods cannot refer to this or instance variables because they are called with the classname, not an object, so there is no this object.
3.9.1. this.instanceVariable¶
The keyword this is sometimes used by programmers to distinguish between variables. Programmers can give the parameter variables the same names as the instance variables and this can distinguish them and avoid a naming conflict. For example, both the instance variable and the parameter variable are called name in the code below, but name on its own looks for the closest local variable, the parameter variable, whereas this.name refers to this object’s instance variable.
Note
this.instanceVariable can be used to distinguish between this object’s instance variables and local parameter variables that may have the same variable names.
// instance variables
private String name;
// constructor
public Person(String name)
{
// Set this object's instance variable name to the parameter variable name
this.name = name;
}
3.9.2. this as an Argument¶
The this variable can be used anywhere you would use an object variable. You can even pass it to another method as an argument. Consider the classes below, Pay and Overtime. The Pay class declares an Overtime object and passes in this (the current Pay object) to its constructor which computes the overtime with respect to that Pay object. Try this code in the active code exercise below with the Show CodeLens button to trace through it step by step. Here is an image that shows how this, myPay and p all refer to the same object in memory.
What does this code print out? Trace through the code with the Show CodeLens button. Notice how the this Pay object is passed to the Overtime constructor.
10.0
-
The pay starts at 20 and then increases with overtime.
15.0
-
If the pay started at 10, this would be the result.
20.0
-
The pay starts at 20 and then increases with overtime.
30.0
-
Correct! The pay starts at 20 and then increases with overtime by multiplying by 1.5.
Nothing is printed because the code will not compile.
-
Incorrect. The code will compile.
3-9-3: Consider the following class definitions.
public class Pay
{
private double pay;
public Pay(double p)
{
pay = p;
}
public double getPay()
{
return pay;
}
public void calculatePayWithOvertime()
{
// this Pay object is passed to the Overtime constructor
Overtime ot = new Overtime(this);
pay = ot.getOvertimePay();
}
}
public class Overtime
{
private double payWithOvertime;
public Overtime(Pay p)
{
payWithOvertime = p.getPay() * 1.5;
}
public double getOvertimePay()
{
return payWithOvertime;
}
}
The following code segment appears in a class other than Pay or Overtime.
Pay one = new Pay(20.0);
one.calculatePayWithOvertime();
System.out.println(one.getPay());
What, if anything, is printed as a result of executing the code segment?
3.9.3.
Coding Challenge : Bank Account¶
Many people keep their money in a bank account. The bank may keep track of the account holder’s name, the acount balance which is the amount of money in the account, and assign an account number to each account. At the bank or an ATM (automatic teller machine) or on a phone app, the account holder can deposit (add) or withdraw (subtract) an amount from their account. Here’s a video that shows the steps to use an ATM to withdraw money from a bank acount. Phone apps like Venmo and Paypal connect to your bank account or credit card to send and get money from businesses or friends.
For this challenge, you can work in pairs to:
Create a class called BankAccount below that keeps track of the account holder’s name, the account number, and the balance in the account. Make sure you use the appropriate data types for these.
Write 2 constructors for the class: one that initializes all the instance variables and one that only has 2 parameters for the name and account number and initializes the balance to 0. For the parameters, use the same variable names as your instance variables. Use the
thiskeyword to distinguish between the instance variables and the parameter variables.Write a
toStringmethod for the class. Use thethiskeyword to return the instance variables.Write
withdraw(amount)anddeposit(amount)methods for the class. Thewithdrawmethod should subtract the amount from the balance as long as there is enough money in the account (the balance is larger than the amount). Anddepositshould add the amount to the balance. Use thethiskeyword to refer to the balance.Test your class below with a
mainmethod that creates aBankAccountobject and calls itsdepositandwithdrawmethods and prints out the object to test itstoStringmethod.
Create a class called BankAccount that keeps track of the account holder’s name, the account number, and the balance in the account. Create 2 constructors using this (one constructor to initialize all 3 instance variables and one that only has 2 parameters for the name and account number and initializes the balance to 0), a toString() method, and withdraw(amount) and deposit(amount) methods. Use the this keyword in the constructor and methods. Test your class in a main method.
3.9.4. Summary¶
(AP 3.9.A.1) Within an instance method or a constructor, the keyword
thisacts as a special variable that holds a reference to the current object—the object whose method or constructor is being called.this.instanceVariablecan be used to distinguish between this object’s instance variables and local parameter variables that may have the same variable names.(AP 3.9.A.2) The keyword
thiscan be used to pass the current object as an argument in a method call.(AP 3.9.A.3) Class methods do not have a
thisreference.
3.9.5. AP Practice¶
50
-
The liquid water has a temperature of 50 but more is added to the jar.
15
-
The liquid milk has a temperature of 15 but more is added to the jar.
65
-
Correct! The liquid water with a temperature of 50 and then the liquid milk with a temperature of 15 are added to the jar.
Nothing, the code segment attempts to access the private variable currentTemp outside of its scope.
-
Incorrect. The currentTemp is never used outside its scope.
Nothing, the code segment attempts to access the private variable totalTemp outside of its scope.
-
Incorrect. The totalTemp is never used outside its scope.
3-9-5: Consider the following class definitions.
public class Liquid
{
private int currentTemp;
public Liquid(int ct)
{
currentTemp = ct;
}
public int getCurrentTemp()
{
return currentTemp;
}
public void addToJar(LiquidJar j)
{
j.addLiquid(this);
}
}
public class LiquidJar
{
private int totalTemp;
public LiquidJar()
{
totalTemp = 0;
}
public void addLiquid(Liquid l)
{
totalTemp += l.getCurrentTemp();
}
public int getTotalTemp()
{
return totalTemp;
}
// Constructor not shown.
}
Consider the following code segment, which appears in a class other than Liquid or LiquidJar.
Liquid water = new Liquid(50);
Liquid milk = new Liquid(15);
LiquidJar j = new LiquidJar();
water.addToJar(j);
milk.addToJar(j);
System.out.println(j.getTotalTemp());
What, if anything, is printed out after the execution of the code segment?

