Java Basics-Exception-runtimeexception

Source: Internet
Author: User
Tags throwable

Class RuntimeException
    • Java.lang.Object
      • Java.lang.Throwable
        • Java.lang.Exception
          • Java.lang.RuntimeException
            • ArithmeticException
            • Indexoutofboundsexception
            • ......
 Public classExceptiontest { Public Static voidMain (string[] args) {Divdemo dd=NewDivdemo (); intResultd; Resultd= Dd.div (10, 0); System.out.println ("Resultd ' value is:" +Resultd); System.out.println ("Over!"); }}/**-----------------Class arithmeticexception * java.lang.Object * java.lang.Throwable * java.lang.Excepti On * java.lang.RuntimeException * java.lang.ArithmeticException **/ classdivdemo{/**runtimeexception features * runtimeexception <--ArithmeticException * Method internal to JVM throwing <RuntimeException> exceptions *     Method name can not add throws Xxxexception, you can not declare this function to throw an exception, do not let the caller handle, is to let the program stop.     * * The programmer who calls the method cannot handle the exception, only changes to the program to conform to the legitimacy of the incoming parameter. * */     Public intDivintAintb) {        if(b = = 0 ){            Throw NewArithmeticException ("----by zero!"); }        returnA/C; }}

: Console:

--------------------------------------------------------------------------

Get

Java Basics-Exception-runtimeexception

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.