Simple use of the this keyword : This « Class « Java






Simple use of the this keyword

Simple use of the this keyword

// : c04:Leaf.java
// Simple use of the "this" keyword.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.

public class Leaf {
  int i = 0;

  Leaf increment() {
    i++;
    return this;
  }

  void print() {
    System.out.println("i = " + i);
  }

  public static void main(String[] args) {
    Leaf x = new Leaf();
    x.increment().increment().increment().print();
  }
} ///:~


           
       








Related examples in the same category

1.This shows off the uses of this
2.Calling constructors with this