Skip to content

The this Keyword

Handout

"This object"

  • Inside an instance method, this refers to the object the method was called on.
  • student.addScore(10) runs with this = that student.
  • this.score means "the score of the object I'm working on."
  • It lets a method talk about its own object explicitly.

Handout

Log in or create account

IGCSE & A-Level