Java 实例 - 使用 catch 处理异常

Java 教程 · 2019-02-11 10:11:54

以下实例演示了使用 catch 来处理异常的方法:

Main.java 文件

public class Main { public static void main (String args[]) { int array[]={20,20,40}; int num1=15,num2=10; int result=10; try{ result = num1/num2; System.out.println("结果为 " +result); for(int i =5;i >=0; i--) { System.out.println ("数组的元素值为 " +array[i]); } } catch (Exception e) { System.out.println("触发异常 : "+e); } } }

以上代码运行输出结果为:

结果为 1
触发异常 : java.lang.ArrayIndexOutOfBoundsException: 5

点击查看所有 Java 教程 文章: https://www.codercto.com/courses/l/12.html

查看所有标签

Thirty-three Miniatures

Thirty-three Miniatures

Jiří Matoušek / American Mathematical Socity / 2010-6-18 / USD 24.60

This volume contains a collection of clever mathematical applications of linear algebra, mainly in combinatorics, geometry, and algorithms. Each chapter covers a single main result with motivation and......一起来看看 《Thirty-three Miniatures》 这本书的介绍吧!

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

URL 编码/解码
URL 编码/解码

URL 编码/解码

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具