博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用throw抛出年龄异常
阅读量:4961 次
发布时间:2019-06-12

本文共 662 字,大约阅读时间需要 2 分钟。

package com.oned9z;

/**
* @program: com.oned9z
* @description:使用throw抛出年龄异常
* @author: Mr.Lin
* @create: 2019年7月23日
**/
public class Person {
private int age;

public int getAge() {

return age;
}

public void setAge(int age) throws Exception{

if(age>=1 && age<=100){
this.age = age;
}else{
throw new Exception("年龄必须在1—100之间!");
}

}

}

package com.oned9z;

/**
* @program: com.oned9z
* @description:测试类
* @author: Mr.Lin
* @create: 2019年7月23日
**/
public class TestAge {
public static void main(String[] args) {
Person person = new Person();
try{
person.setAge(1231312);
}catch (Exception e){
e.printStackTrace();
}
}

}

 

转载于:https://www.cnblogs.com/lpbk/p/11233575.html

你可能感兴趣的文章
apache 实现图标缓存客户端
查看>>
揭秘:黑客必备的Kali Linux是什么,有哪些弊端?
查看>>
linux系统的远程控制方法——学神IT教育
查看>>
springboot+mybatis报错Invalid bound statement (not found)
查看>>
Linux环境下SolrCloud集群环境搭建关键步骤
查看>>
P3565 [POI2014]HOT-Hotels
查看>>
MongoDB的简单使用
查看>>
hdfs 命令使用
查看>>
prometheus配置
查看>>
【noip2004】虫食算——剪枝DFS
查看>>
java语法之final
查看>>
python 多进程和多线程的区别
查看>>
sigar
查看>>
iOS7自定义statusbar和navigationbar的若干问题
查看>>
[Locked] Wiggle Sort
查看>>
deque
查看>>
Setting up a Passive FTP Server in Windows Azure VM(ReplyCode: 227, Entering Passive Mode )
查看>>
Python模块调用
查看>>
委托的调用
查看>>
c#中从string数组转换到int数组
查看>>