Write a java program using this keyword which can be passed as argument in the constructor call code example
Example: this obj java meaning
public class Point {
public int x = 0;
public int y = 0;
//constructor
public Point(int x, int y) {
this.x = x;
this.y = y;
}
}