|
Исходный текст программы
StdExeption.java
|
Оглавление |
Назад
// =======================================
// StdExeption.java
//
// (C) Alexandr Frolov, 1998
// E-mail: frolov@glasnet.ru
// Web: http://www.glasnet.ru/~frolov
// =======================================
public class StdExeption
{
public static void main(String args[])
{
int i = 0;
String szShortString = "123";
char chr;
Object ch = new Character('*');
try
{
i = 5/i;
chr = szShortString.charAt(10);
System.out.println((Byte)ch);
}
catch(StringIndexOutOfBoundsException ex)
{
System.out.println(ex.toString());
}
catch(ArithmeticException ex)
{
System.out.println(ex.toString());
}
catch(Exception ex)
{
System.out.println(ex.toString());
}
}
}
Назад |
|