标签:举例 优雅 oid load tde ati lan int let
1.异常(Exception)的定义,意义和用法 (视频下载) (全部书籍)
我们先给出一个例子,看看异常有什么用?
例:1.1-本章源码
public class Test {
public static void main(String[] args) {
int userInput=0;
int I = 6 / userInput;
System.out.println("马克-to-win:优雅结束");
}
}
输出结果:
Exception in thread "main" java.lang.ArithmeticException: / by zero
at Test.main(Test.java:4)
例:1.1.2-本章源码
public class Test {
public static void main(String[] args) {
try
{
int userInput=0;
int I = 6 / userInput;
System.out.println("马克-to-win:inside try");
}
/*系统把错误信息放在Exception的对象e中,马克-to-win*/
catch(Exception e)
{
。。。。。。。。。。。。。。。。。
详情请进:http://www.mark-to-win.com/index.html?content=JavaBeginner/javaUrl.html&chapter=JavaBeginner/JavaBeginner5_web.html#PointDefinitionUsageException
java中异常(Exception)的定义,意义和用法。举例
标签:举例 优雅 oid load tde ati lan int let
原文地址:https://www.cnblogs.com/mark-to-win/p/9694748.html