摘要: 双向链表的插入 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,* 阅读全文
posted @ 2019-04-23 23:57 18软工8班段诗媛 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 一、异常处理 1、catch中的“getMessage()”函数:输出错误性质 2、toString()函数:给出异常的类型与性质 3、printStackTrace()函数:之处异常的类型,性质,栈层次及出现在程序中的位置 4、catch (NumberFormatException e ){ > 阅读全文
posted @ 2019-04-23 00:27 18软工8班段诗媛 阅读(89) 评论(0) 推荐(0) 编辑