算术异常

除数不能为0 
java.lang.ArithmeticException: / by zero
int a=1;
int b=0;
a/b;
原文地址:https://www.cnblogs.com/wskb/p/10951563.html