Which of the following best explains the purpose of the this keyword in the following constructor?
public class Point {
private double x;
private double y;
public Point(double x, double y) {
this.x = x;
this.y = y;
}
}