Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
Java

this Keyword in Java

Refer to the current object with this.

this Keyword in Java — a practical guide to Java this keyword with clear examples you can reuse in real projects.

Java Tutorial Series (34/90). Prefer one article? Read the complete Java tutorial.

Short description

`this` disambiguates fields from parameters and can call other constructors (`this(…)`).

this usage

class Point {
    int x;
    Point(int x) { this.x = x; }
}

Leave a reply

Your email address will not be published. Required fields are marked *