0923异常——练习题目作业

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了0923异常——练习题目作业相关的知识,希望对你有一定的参考价值。

package exception;

public class TestException {
		public static void main(String[] args)
		{
	    for(int i=0;i<4;i++)
	    {
	    	
	    	
	    	
	    	
	try
	{
				int k;
				switch(i)
				{           
				case 0: int zero=0;k=911/zero;break;                     
//            	case 1: int b[]=null;k=b[0];break;
//           	case 2: int c[]=new int[2];k=c[9];break;
//           	case 3: char ch="abc".charAt(99);break;
				} 
	} 
    catch(Exception e)
    {
    	System.out.println("分母不能为0  "+"错误提示如下");
    	e.printStackTrace();
       	 
    }
	
	
	
	    }
		} 
}

  技术分享

package exception;

public class TestException {
		public static void main(String[] args)
		{
	    for(int i=0;i<4;i++)
	    {
	    	
	    	
	    	
	    	
	try
	{
				int k;
				switch(i)
				{           
//				case 0: int zero=0;k=911/zero;break;                     
            	case 1: int b[]=null;k=b[0];break;
//           	case 2: int c[]=new int[2];k=c[9];break;
//           	case 3: char ch="abc".charAt(99);break;
				} 
	} 
    catch(Exception e)
    {
    	System.out.println("空指针  "+"错误提示如下");
    	e.printStackTrace();
       	 
    }

  技术分享

package exception;

public class TestException {
		public static void main(String[] args)
		{
	    for(int i=0;i<4;i++)
	    {
	    	
	    	
	    	
	    	
	try
	{
				int k;
				switch(i)
				{           
//				case 0: int zero=0;k=911/zero;break;                     
//            	case 1: int b[]=null;k=b[0];break;
           	case 2: int c[]=new int[2];k=c[9];break;
//           	case 3: char ch="abc".charAt(99);break;
				} 
	} 
    catch(Exception e)
    {
    	System.out.println("超出数组长度  "+"错误提示如下");
    	e.printStackTrace();
       	 
    }
	

  技术分享

package exception;

public class TestException {
		public static void main(String[] args)
		{
	    for(int i=0;i<4;i++)
	    {
	    	
	    	
	    	
	    	
	try
	{
				int k;
				switch(i)
				{           
//				case 0: int zero=0;k=911/zero;break;                     
//            	case 1: int b[]=null;k=b[0];break;
//           	case 2: int c[]=new int[2];k=c[9];break;
           	case 3: char ch="abc".charAt(99);break;
				} 
	} 
    catch(Exception e)
    {
    	System.out.println("输入的字符串错误  "+"错误提示如下");
    	e.printStackTrace();
       	 
    }
	
	
	
	    }
		} 
}

  技术分享

以上是关于0923异常——练习题目作业的主要内容,如果未能解决你的问题,请参考以下文章

单片机单片机基本原理练习题1

单片机单片机基本原理练习题4

单片机单片机基本原理练习题2

单片机单片机基本原理练习题3

作业10-异常

作业10-异常