Java examples for Object Oriented Design:this
Use this to reference current object
class Point { public int x = 0; public int y = 0; // a constructor! public Point(int x, int y) { this.x = x; this.y = y; }//from w w w . j a v a2 s . c om }