摘要:
双向链表的插入 typedef struct node{ Elemtype data; struct nide *prior; struct node *next; }Dlist; int insElem(Dlist *L,Elemtype x,int i){ int j=0; Dlist *p,* 阅读全文
摘要:
一、异常处理 1、catch中的“getMessage()”函数:输出错误性质 2、toString()函数:给出异常的类型与性质 3、printStackTrace()函数:之处异常的类型,性质,栈层次及出现在程序中的位置 4、catch (NumberFormatException e ){ > 阅读全文