Java中的自定义异常怎么实现


这篇文章主要介绍“Java中的自定义异常怎么实现”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Java中的自定义异常怎么实现”文章能帮助大家解决问题。Java中默认的异常信息有哪些呢?Java程序中捕获异常之后会将异常进行输出,不知道细心的同学有没有注意到一点,输出的异常是什么东西呢?下面来看一个常见的ArithmeticException异常:再看看一个Java程序员耳熟能详的NullPointerException空指针异常:大家有没有发现一个特点,就是异常的输出中能够精确的输出异常出现的地点,精确到每一行代码,还有后面一大堆的执行过程类调用,也都打印出来了,这些信息从哪儿来呢?这些信息是从栈中获取的,在打印异常日志的时候,会从JVM 栈中去获取这些调用信息。能够精确的定位异常出现的异常当然是好,但是我们有时候考虑到程序的性能,以及一些需求时,我们有时候并不需要完全的打印这些信息,并且去方法调用栈中获取相应的信息,是有性能消耗的,对于一些性能要求高的程序,我们完全可以在异常处理方面为程序性能做一个性能提升。所以如何避免输出这些堆栈信息呢? 那么自定义异常就可以解决这个问题:首先,自定义异常需要继承RuntimeException,然后,再通过是重写fillInStackTrace,toString 方法,例如下面我定义一个AppException异常:那么为什么要重写fillInStackTrace,和 toString 方法呢? 我们首先来看源码是怎么一回事。Notethatthedetailmessageassociatedwith
*causeisnotautomaticallyincorporatedin
*thisruntimeexception’sdetailmessage.
*
*@parammessagethedetailmessage(whichissavedforlaterretrieval
*bythe{@link#getMessage()}method).
*@paramcausethecause(whichissavedforlaterretrievalbythe
*{@link#getCause()}method).(Anullvalueis
*permitted,andindicatesthatthecauseisnonexistentor
*unknown.)
*@since1.4
*/
publicRuntimeException(Stringmessage,Throwablecause){
super(message,cause);
}

/**Constructsanewruntimeexceptionwiththespecifiedcauseanda
*detailmessageof(cause==null?null:cause.toString())
*(whichtypicallycontainstheclassanddetailmessageof
*cause).Thisconstructorisusefulforruntimeexceptions
*thatarelittlemorethanwrappersforotherthrowables.
*
*@paramcausethecause(whichissavedforlaterretrievalbythe
*{@link#getCause()}method).(Anullvalueis
*permitted,andindicatesthatthecauseisnonexistentor
*unknown.)
*@since1.4
*/
publicRuntimeException(Throwablecause){
super(cause);
}
}RuntimeException是继承Exception,但是它里面只是调用了父类的方法,本身是没有做什么其余的操作。那么继续看Exception里面是怎么回事。Notethatthedetailmessageassociatedwith
*causeisnotautomaticallyincorporatedin
*thisexception’sdetailmessage.
*
*@parammessagethedetailmessage(whichissavedforlaterretrieval
*bythe{@link#getMessage()}method).
*@paramcausethecause(whichissavedforlaterretrievalbythe
*{@link#getCause()}method).(Anullvalueis
*permitted,andindicatesthatthecauseisnonexistentor
*unknown.)
*@since1.4
*/
publicException(Stringmessage,Throwablecause){
super(message,cause);
}

/**
*Constructsanewexceptionwiththespecifiedcauseandadetail
*messageof(cause==null?null:cause.toString())(which
*typicallycontainstheclassanddetailmessageofcause).
*Thisconstructorisusefulforexceptionsthatarelittlemorethan
*wrappersforotherthrowables(forexample,{@link
*java.security.PrivilegedActionException}).
*
*@paramcausethecause(whichissavedforlaterretrievalbythe
*{@link#getCause()}method).(Anullvalueis
*permitted,andindicatesthatthecauseisnonexistentor
*unknown.)
*@since1.4
*/
publicException(Throwablecause){
super(cause);
}
}从源码中可以看到,Exception里面也是直接调用了父类的方法,和RuntimeException一样,自己其实并没有做什么。那么直接来看Throwable里面是怎么一回事:Somevirtualmachinesmay,undersomecircumstances,omitone
*ormorestackfra免费云主机域名mesfromthestacktrace.Intheextremecase,
*avirtualmachinethathasnostacktraceinformationconcerning
*thisthrowableispermittedtoreturnazero-lengtharrayfromthis
*method.Generallyspeaking,thearrayreturnedbythismethodwill
*containoneelementforeveryframethatwouldbeprintedby
*printStackTrace.
*
*@returnanarrayofstacktraceelementsrepresentingthestacktrace
*pertainingtothisthrowable.
*@since1.4
*/
publicStackTraceElement[]getStackTrace(){
return(StackTraceElement[])getOurStackTrace().clone();
}

privatesynchronizedStackTraceElement[]getOurStackTrace(){
//Initializestacktraceifthisisthefirstcalltothismethod
if(stackTrace==null){
intdepth=getStackTraceDepth();
stackTrace=newStackTraceElement[depth];
for(inti=0;iindex<0||
*index>=getStackTraceDepth()
*/
nativeStackTraceElementgetStackTraceElement(intindex);

/**
*Returnsashortdescriptionofthisthrowable.
*Theresultistheconcatenationof:
*从源码中可以看到,到Throwable就几乎到头了,在fillInStackTrace() 方法是一个native方法,这方法也就是会调用底层的C语言,返回一个Throwable对象,toString 方法,返回的是throwable的简短描述信息,并且在getStackTrace 方法和 getOurStackTrace 中调用的都是native方法getStackTraceElement,而这个方法是返回指定的栈元素信息,所以这个过程肯定是消耗性能的,那么我们自定义异常中的重写toString方法和fillInStackTrace方法就可以不从栈中去获取异常信息,直接输出,这样对系统和程序来说,相对就没有那么”重”,是一个优化性能的非常好的办法。按照上面我们举例的自定义AppException异常,如果出现异常了,这个AppException异常输出是什么样的信息呢?请看下面吧:执行上面单元测试,在异常异常的时候,系统将会打印我们自定义的异常信息:000001[空指针异常]

Process finished with exit code -1关于“Java中的自定义异常怎么实现”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注百云主机行业资讯频道,小编每天都会为大家更新不同的知识点。

相关推荐: vue项目input标签checkbox,change和click绑定事件的区别是什么

本篇内容主要讲解“vue项目input标签checkbox,change和click绑定事件的区别是什么”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“vue项目input标签checkbox,change和clic…

免责声明:本站发布的图片视频文字,以转载和分享为主,文章观点不代表本站立场,本站不承担相关法律责任;如果涉及侵权请联系邮箱:360163164@qq.com举报,并提供相关证据,经查实将立刻删除涉嫌侵权内容。

Like (0)
Donate 微信扫一扫 微信扫一扫
Previous 03/30 16:41
Next 03/30 16:41

相关推荐