摘要: 今日学习了include指令和include动作。 两者可以实现一样的功能,但是实现细节不一样。 include指令:<%@ include file="URL"%> inlcude动作:<jsp:include page="URL" flush="true/false"%> 两者都可以实现将一个文 阅读全文
posted @ 2020-10-28 22:13 风吹过半夏 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 1. public static void main(String[] a) { int i=1, j=0, k; k=i/j; try { k = i/j; // Causes division-by-zero exception //throw new Exception("Hello.Exce 阅读全文
posted @ 2020-10-28 21:02 风吹过半夏 阅读(117) 评论(0) 推荐(0) 编辑