java的问题?
定义人的类,包括姓名年龄,运用getter和setter的方法,最终定义方法用于比较两个人的年龄是否相等...
定义人的类,包括姓名年龄,运用getter和setter的方法,最终定义方法用于比较两个人的年龄是否相等
展开
展开全部
public class Person {
private String name;
private int 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;
}
public boolean compareTowPeopleAge(Person p1, Person p2){
if (p1 == null || p2 == null){
throw new RuntimeException("参数传入为null");
}
return p1.getAge() == p2.getAge();
}
}
如果解决了你的问题,请采纳,如果有疑问,请追问!
private String name;
private int 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;
}
public boolean compareTowPeopleAge(Person p1, Person p2){
if (p1 == null || p2 == null){
throw new RuntimeException("参数传入为null");
}
return p1.getAge() == p2.getAge();
}
}
如果解决了你的问题,请采纳,如果有疑问,请追问!
追问
我已经做出来了_(:з」∠)_,不过还是很感谢
追答
客气,看到的有点晚了
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询