Answer the question
In order to leave comments, you need to log in
Why do we need methods that return the value of a class field?
For example:
class Person{
private String name;
private int age;
public Person(String n, int a){
name=n;
age=a;
}
String getName(){return name;}
int getAge(){return age;}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question