当前位置: 技术问答>java相关
275上对于异常的问题不解:)谢谢!!
来源: 互联网 发布时间:2017-04-23
本文导语: 我看的是275现在还是不理解:)275上面的例子举的是: 自己写的异常类是继承于Exception;在catch中是这样写的throw e;就okle:) 我继承的是ArrayIndexOutOfBoundsException 并重写了toString这个方法:) 为了看这方便写一下:...
我看的是275现在还是不理解:)275上面的例子举的是:
自己写的异常类是继承于Exception;在catch中是这样写的throw e;就okle:)
我继承的是ArrayIndexOutOfBoundsException 并重写了toString这个方法:)
为了看这方便写一下:)
public class Ninetyeight
{
class dlexception extends ArrayIndexOutOfBoundsException
{
public String toString( )
{
return "异常抛出 !";
}
}
public Ninetyeight()
{
int i = 0;
try{
String DiavArray[] = {"A","B","C","D"};
System.out.println("Hello World!");
while(i
自己写的异常类是继承于Exception;在catch中是这样写的throw e;就okle:)
我继承的是ArrayIndexOutOfBoundsException 并重写了toString这个方法:)
为了看这方便写一下:)
public class Ninetyeight
{
class dlexception extends ArrayIndexOutOfBoundsException
{
public String toString( )
{
return "异常抛出 !";
}
}
public Ninetyeight()
{
int i = 0;
try{
String DiavArray[] = {"A","B","C","D"};
System.out.println("Hello World!");
while(i