动手动脑

一、运行课件中的例题ParentChildTest.java,回答下列问题:

a、左边的结果运行结果是什么?

运行结果截图为:

 

b、你如何解释会得到这样的输出?

第一个值:父类Parent调用自己的方法;

第二个值:子类child调用方自己的方法;

第三个值:子类将自己的方法赋给父类,因而实际调用的是子类的方法;

第四个值:父类中的值MyValue加一,但是父类调用的是子类的方法,因而无影响;

第五个值:强制转化,父类将值赋给子类,调用的仍然是子类的方法,只是值加一

c、计算机是不会出错的,之所以会得到这样的运行结果也是有原因的,那么从运行结果当中,你能总结出java的那些语法特征?

① 用类名进行赋值时(如parent=child ),附的都是方法;

② 对类中的值进行赋值时需要用类名.对象;

③ 父类对子类进行赋值时需要强制转化;

(1)、并修改ParentChildTest.java,验证你的回答结果。

  验证程序代码如下:

public class ParentChileTest {

public static void main(String[] args) {

Parent parent=new Parent();

parent.printValue();

Child child=new Child();

child.printValue();

parent=child;

parent.printValue();

parent.myValue ++;

System.out.println(parent.myValue);

System.out.println(child.myValue);

parent.printValue();

 

((Child)parent).myValue++;

System.out.println(parent.myValue);

System.out.println(child.myValue);

parent.printValue();

}

}

class Parent{

public int myValue=100;

public void printValue() {

System.out.println("Parent.printValue(),myValue="+myValue);

}

}

class Child extends Parent{

public int myValue=200;

public void printValue() {

System.out.println("Child.printValue(),myValue="+myValue);

}

}

截图:

 

二、请阅读并运行AboutException.java示例,然后通过后面的几页PPT了解Java中实现异常处理的基础知识

实验代码为:

import javax.swing.*;

class AboutException {

   public static void main(String[] a) 

   {

      int i=1, j=0, k;

      k=i/j;

 

try

{

k = i/j;    // Causes division-by-zero exception

//throw new Exception("Hello.Exception!");

}

catch ( ArithmeticException e)

{

System.out.println("被0除.  "+ e.getMessage());

}

 catch (Exception e)

{

if (e instanceof ArithmeticException)

System.out.println("被0除");

else

{  

System.out.println(e.getMessage()); 

}

}

finally

     {

      JOptionPane.showConfirmDialog(null,"OK");

     }

 

  }

}

实验截图为:

 

使用Java异常处理的机制:

把可能会发生错误的代码放进try语句块中。当程序检测到出现了一个错误时会抛出一个异常对象。异常处理代码会捕获并处理这个错误。catch语句块中的代码用于处理错误。当异常发生时,程序控制流程由try语句块跳转到catch语句块。不管是否有异常发生,finally语句块中的语句始终保证被执行。如果没有提供合适的异常处理代码,JVM将会结束掉整个应用程序。

三、多层的异常捕获-1

   阅读下面代码,写出程序的运行结果:

public class CatchWho { 

    public static void main(String[] args) { 

        try { 

            try { 

                throw new ArrayIndexOutOfBoundsException(); 

            } 

            catch(ArrayIndexOutOfBoundsException e) { 

               System.out.println(  "ArrayIndexOutOfBoundsException" +  "/内层try-catch"); 

            }

            throw new ArithmeticException(); 

        } 

        catch(ArithmeticException e) { 

            System.out.println("发生ArithmeticException"); 

        } 

        catch(ArrayIndexOutOfBoundsException e) { 

           System.out.println(  "ArrayIndexOutOfBoundsException" + "/外层try-catch"); 

        } 

    } 

}

输出结果为:ArrayIndexOutOfBoundsException内层try-catch

   发生ArithmeticException

截图为:

 

四、写出下列程序的运行结果:

  public class CatchWho2 { 

    public static void main(String[] args) { 

        try {

           try { 

                throw new ArrayIndexOutOfBoundsException(); 

            } 

            catch(ArithmeticException e) { 

                System.out.println( "ArrayIndexOutOfBoundsException" + "/内层try-catch"); 

            }

            throw new ArithmeticException(); 

        } 

        catch(ArithmeticException e) { 

            System.out.println("发生ArithmeticException"); 

        } 

        catch(ArrayIndexOutOfBoundsException e) { 

            System.out.println( "ArrayIndexOutOfBoundsException" + "/外层try-catch"); 

        } 

 

转载于:https://www.cnblogs.com/znn123/p/4967374.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值