What is not the use of this keyword in Java? a) Passing itself to another method b) Calling another constructor in constructor chaining c) Referring to the instance variable when local code example
Example: java call another constructor
public class Foo {
private int x;
public Foo() {
this(1);
}
public Foo(int x) {
this.x = x;
}
}