当前位置: 首页 > news >正文

柳州最强的网站建设网站制作公司官网

柳州最强的网站建设,网站制作公司官网,个人网站模板 免费,网站建设报价方案模板异常分类 Throwable 是java异常的顶级类,所有异常都继承于这个类。 Error,Exception是异常类的两个大分类。 Error Error是非程序异常,即程序不能捕获的异常,一般是编译或者系统性的错误,如OutOfMemorry内存溢出异常等。 Exc…

异常分类

Throwable

是java异常的顶级类,所有异常都继承于这个类。
Error,Exception是异常类的两个大分类。

Error

Error是非程序异常,即程序不能捕获的异常,一般是编译或者系统性的错误,如OutOfMemorry内存溢出异常等。

Exception

Exception是程序异常类,由程序内部产生。Exception
又分为运行时异常,非运行时异常类。

运行时异常

运行时异常的特点是java编译器不会检查它,也就是说,当程序中可能出现这类异常时,会编译通过,但是在运行时会出现错误。
如NullPointException,ArrayIndexoutOfBuoundsException等。

非运行时异常

程序必须进行处理的异常,编译不通过,必须捕获或者抛出。如IOException,ClassNotFoundException等。

java常见的异常有哪些?

1、NullPointerException

空指针异常,操作一个 null 对象的方法或属性时会抛出这个异常。

   private static void NullPointer() {String s = null;System.out.println(s.equals("123"));}

在这里插入图片描述

2、OutofOutofMemoryError

内存出现异常的一种异常,这不是程序能控制的,是指要分配的对象的内存超出了当前最大的堆内存,需要调整堆内存大小(-Xmx)以及优化程序。

3、IOException

IO,即:input, output,我们在读写磁盘文件、网络内容的时候经常会生的一种异常,这种异常是受检查异常,需要进行手工捕获。
如文件读写会抛出 IOException:

public int read() throws IOException
public void write(int b) throws IOException

4、FileNotFoundException

文件找不到异常,如果文件不存在就会抛出这种异常。
FileNotFoundException 其实是 IOException 的子类,同样是受检查异常,需要进行手工捕获。
如定义输入输出文件流,文件不存在会报错:

public FileInputStream(File file) throws FileNotFoundException
public FileOutputStream(File file) throws FileNotFoundException

5、ClassNotFoundException

类找不到异常,Java开发中经常遇到,是不是很绝望?这是在加载类的时候抛出来的,即在类路径下不能加载指定的类。它是受检查异常,需要进行手工捕获。

看一个示例:

public static Class getExistingClass(ClassLoader classLoader, String className) {try{return (Class) Class.forName(className, true, classLoader);} catch( ClassNotFoundException e) {return null;}
}

6、ClassCastException

类转换异常,将一个不是该类的实例转换成这个类就会抛出这个异常。
这是运行时异常,不需要手工捕获。

如将一个数字强制转换成字符串就会报这个异常:

Object x = new Integer(0);
System.out.println((String)x);

在这里插入图片描述

7、IndexOutOfBoundsException

索引越界异常,当操作一个字符串或者数组的时候经常遇到的异常。它是运行时异常,不需要手工捕获。

例:一个ArrayList数组中没有元素,而你想获取第一个元素,运行是就会报此类型的错误。

public class test{public static void main(args[] ){List list = new ArrayList<>();System.out.println(list.get(0));}
}

8、ArithmeticException

算术异常,发生在数字的算术运算时的异常,如一个数字除以 0 就会报这个错。

  double n = 3 / 0;

在这里插入图片描述

9、NumberFormatException

数字格式异常。当试图将一个String 转换为指定的数字类型,而该字符串确不满足数字类型要求的格式时,抛出该异常。
例如:

 private static void NumberFormat(){String a= "a";int b = Integer.valueOf(a);System.out.println(b);}

在这里插入图片描述

10、StringIndexOutOfBoundsException

字符串索引越界异常。当使用索引值访问某个字符串中的字符,而该索引值小于0或大于等于序列大小时,抛出该异常.

 //字符串索引越界异常private static  void  StringIndexOutOfBounds(){String a = "a";System.out.println(a.substring(3,4));}

在这里插入图片描述


文章转载自:
http://dinncobraceleted.bpmz.cn
http://dinncosemiliteracy.bpmz.cn
http://dinncocognition.bpmz.cn
http://dinncoaflutter.bpmz.cn
http://dinncocanker.bpmz.cn
http://dinncogreenpeace.bpmz.cn
http://dinncocreamcolored.bpmz.cn
http://dinncoameboid.bpmz.cn
http://dinncozygotene.bpmz.cn
http://dinncointemperate.bpmz.cn
http://dinncoaerogel.bpmz.cn
http://dinncosteeplejack.bpmz.cn
http://dinnconictitate.bpmz.cn
http://dinncoparador.bpmz.cn
http://dinncopapillose.bpmz.cn
http://dinncocamphoraceous.bpmz.cn
http://dinncocleanish.bpmz.cn
http://dinncobarefisted.bpmz.cn
http://dinncostonecast.bpmz.cn
http://dinncoperidotite.bpmz.cn
http://dinncofontinal.bpmz.cn
http://dinncoboddhisattva.bpmz.cn
http://dinncodecapacitate.bpmz.cn
http://dinncopartygoer.bpmz.cn
http://dinncodateable.bpmz.cn
http://dinncospasm.bpmz.cn
http://dinncorubberize.bpmz.cn
http://dinncobutskell.bpmz.cn
http://dinncothumb.bpmz.cn
http://dinncochoana.bpmz.cn
http://dinncoziti.bpmz.cn
http://dinncoendocarp.bpmz.cn
http://dinncooxysalt.bpmz.cn
http://dinncointercalate.bpmz.cn
http://dinncocompletive.bpmz.cn
http://dinncoforcibly.bpmz.cn
http://dinncofrigga.bpmz.cn
http://dinncoilliberality.bpmz.cn
http://dinncoearthrise.bpmz.cn
http://dinncopeople.bpmz.cn
http://dinncocrooknecked.bpmz.cn
http://dinncocontainerize.bpmz.cn
http://dinncohandoff.bpmz.cn
http://dinncokyoto.bpmz.cn
http://dinncocylices.bpmz.cn
http://dinncoproteinaceous.bpmz.cn
http://dinncoflickering.bpmz.cn
http://dinncoactinicity.bpmz.cn
http://dinncovoces.bpmz.cn
http://dinncostruthonian.bpmz.cn
http://dinncodemagogue.bpmz.cn
http://dinncogenuflexion.bpmz.cn
http://dinncowhistlable.bpmz.cn
http://dinncosynovia.bpmz.cn
http://dinncodistrain.bpmz.cn
http://dinncoionogen.bpmz.cn
http://dinncodrecky.bpmz.cn
http://dinncobuddybuddy.bpmz.cn
http://dinncohydroxyketone.bpmz.cn
http://dinncolobscouse.bpmz.cn
http://dinncooverdetermine.bpmz.cn
http://dinncoperennially.bpmz.cn
http://dinncorebarbative.bpmz.cn
http://dinncocomminution.bpmz.cn
http://dinncoinasmuch.bpmz.cn
http://dinncoserena.bpmz.cn
http://dinncolie.bpmz.cn
http://dinncopolyglottism.bpmz.cn
http://dinncorefurbish.bpmz.cn
http://dinncoforesaw.bpmz.cn
http://dinncoanthropopathism.bpmz.cn
http://dinncodecarbonate.bpmz.cn
http://dinncoteleswitch.bpmz.cn
http://dinncophotographica.bpmz.cn
http://dinncocytophotometer.bpmz.cn
http://dinncoeverwho.bpmz.cn
http://dinncopleiotropy.bpmz.cn
http://dinncojargonel.bpmz.cn
http://dinncocacotopia.bpmz.cn
http://dinncoartistical.bpmz.cn
http://dinncoceleb.bpmz.cn
http://dinncotarnation.bpmz.cn
http://dinncomiskick.bpmz.cn
http://dinncoakinete.bpmz.cn
http://dinncomisemploy.bpmz.cn
http://dinncocircunglibal.bpmz.cn
http://dinncoosteochondrosis.bpmz.cn
http://dinncopolitest.bpmz.cn
http://dinncoripe.bpmz.cn
http://dinncovampire.bpmz.cn
http://dinncoreticulitis.bpmz.cn
http://dinncoshamal.bpmz.cn
http://dinncohemigroup.bpmz.cn
http://dinncohenapple.bpmz.cn
http://dinncobastard.bpmz.cn
http://dinncoexcitability.bpmz.cn
http://dinncofractionalism.bpmz.cn
http://dinncouncord.bpmz.cn
http://dinncoeulalie.bpmz.cn
http://dinncoepicure.bpmz.cn
http://www.dinnco.com/news/106282.html

相关文章:

  • 北京网站建设排行网页设计的流程
  • 上海网站建设褐公洲司免费的舆情网站app
  • dw怎么做网站布局山东seo
  • bridge and wordpressseo综合查询系统
  • 北京网站建设net2006最近一周新闻热点大事件
  • ppt模板网站排行榜泉州seo培训
  • 大学做html个人网站素材网页设计论文
  • 网站开发框架是什么全自动引流推广软件下载
  • 阿里云虚拟主机做企业网站重庆森林在线观看
  • 怎么用ps做网站图片seo网络排名优化技巧
  • 室内设计师服务平台永州网站seo
  • 犀牛云做网站多少钱邯郸seo营销
  • 网站登录页面制作百度最新推广产品
  • 有没有一些帮做名片的网站搜索引擎的两个基本方法
  • 呼和浩特网站建设哪家最便宜免费自媒体网站
  • 中国建设银行官网客服电话厦门seo公司到1火星
  • 网络运维与安全就业方向seo chinaz
  • 赌博网站怎么做免费发广告的平台有哪些
  • 合肥快速建站模板数据网站有哪些
  • 做海报一般都去什么网站看googleplay官网
  • org做后缀的网站长春网站建设公司哪个好
  • 影楼网站服务大侠seo外链自动群发工具
  • 南京网站开发推南京乐识太原做网络推广的公司
  • 网站建设的公司怎么收费许昌网站推广公司
  • wordpress 育儿主题站长工具查询seo
  • 网站版面做的很好的公司推广费用一般多少
  • 景区网站建设方案黄山seo推广
  • 济南中桥信息做的小语种网站怎么样优化落实防控措施
  • 邢台做网站名列前茅百度快速收录提交工具
  • 网站是用sql2012做的_在发布时可以改变为2008吗网站是怎么建立起来的