摘要: class ArraySizeException extends NegativeArraySizeException{ ArraySizeException() { super("你传递的是非法数组大小!"); }} class UserExceptionDemo{ int size,array[]; UserExceptionDemo(int s) { size=s; try { ... 阅读全文
posted @ 2009-04-19 17:03 kanjc 阅读(159) 评论(0) 推荐(0) 编辑