- forename
- surname
- age
- height (in metres)
- gender
These variables will be stroed using Private variables. Here Is My Code For the Person class so far:
public class Person
{
private String foreName;
private String surName;
private int age;
private double height;
private String gender;
public Person(String foreName, String surName, int age, double height, String gender)
{
this.foreName = foreName;
this.surName = surName;
this.age = age;
this.height = height;
this.gender = gender;
}
public String toString()
{
return "Person[foreName = " + foreName + "]";
}
Now i need to add appropriate get and set methods for each variable, How would i go about on doing this?
Thanks

New Topic/Question
Reply



MultiQuote






|