Skip to content

Instantly share code, notes, and snippets.

@raghuvarmabh
Last active December 3, 2019 00:16
Show Gist options
  • Save raghuvarmabh/cbc34173c9c50f41d1a82dc68a305048 to your computer and use it in GitHub Desktop.
Save raghuvarmabh/cbc34173c9c50f41d1a82dc68a305048 to your computer and use it in GitHub Desktop.
public class Person {
private String name;
private int age;
Person(String name, int age){
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment