创建student类,类中有age字段,封装age字段,在set访问器中加入年龄的判断语句,如果
答案:1 悬赏:60 手机版
解决时间 2021-02-04 02:03
- 提问者网友:最美的风景
- 2021-02-03 11:41
age赋0值,抛出异常
最佳答案
- 五星知识达人网友:你可爱的野爹
- 2021-02-03 12:55
package reptile;
public class Student
{
private int age;
public int getAge()
{
return age;
}
public void setAge(int age) throws Exception
{
if(age == 0){
throw new Exception();
}else{
this.age = age;
}
}
}
public class Student
{
private int age;
public int getAge()
{
return age;
}
public void setAge(int age) throws Exception
{
if(age == 0){
throw new Exception();
}else{
this.age = age;
}
}
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯