The this(Keyword) code example
Example: The this(Keyword)
public class Person {
String name;
int age;
char gender;
public Person(String name, int age, char gender) {
this.name = name;
this.age = age;
this.gender = gender;
}
}