Let's say I created an instance in Java of a class Person
public class Person
{
private String name;
private int age;
// lot of other member variables
// get set here
}
How to know whether this instance at least have one of member variables being set (without checking all of the variables one by one?
For example :
Person person = new Person();
Person person1 = new Person();
person1.setName("John");
I need to know that person instance has not set any variables. However person1 has set at least one variable.
What I can think for solving this is to
- create boolean flag that being changed to true in every set method, or
- create a method that checking the variables one by one.
But I wonder if there's some way that more elegant to do this.
