I have an object called Person
.
it has several attributes in it;
int id;
String name;
i set a person object like Person p = new Person(1,"Joe");
.
1.) I need to check if the object is not null; Is the following expression correct;
if (person == null){
}
Or
if(person.equals(null))
2.) I need to know if the ID contains an Int.
if(person.getId()==null){}
But, java doesn't allow it. How can i do this check ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…