the this 28keyword 29

Solutions on MaxInterview for the this 28keyword 29 by the best coders in the world

showing results for - "the this 28keyword 29"
Regina
28 Oct 2018
1public class Person {
2    String name;
3    int age;
4    char gender;
5    public Person(String name, int age, char gender) {
6        this.name = name;
7        this.age = age;
8        this.gender = gender;
9    }
10}