摘要: 概念解释: 值传递,传递值,在函数中形参发生的变化不影响实参。 引用传递,传递对象引用,在函数中形参发生的变化影响实参。 1.对于基本数据类型,指的便是变量值得拷贝; 2.对于对象(或String、Integer等包装基本类型),指的是对象地址的拷贝,也就是说所传递的值是对象的地址; 阅读全文
posted @ 2019-10-24 09:12 Curedfisher 阅读(1349) 评论(0) 推荐(0) 编辑
摘要: 转载URL:http://blog.csdn.net/vbirdbest/article/details/80296136 阅读全文
posted @ 2019-10-23 17:09 Curedfisher 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 转载链接:https://blog.csdn.net/caibaoH/article/details/77005977 阅读全文
posted @ 2019-10-22 10:01 Curedfisher 阅读(336) 评论(0) 推荐(0) 编辑
摘要: 转载uri:https://www.cnblogs.com/widget90/p/7592507.html 阅读全文
posted @ 2019-10-21 09:27 Curedfisher 阅读(597) 评论(0) 推荐(0) 编辑
摘要: <input type=button value="提交" οnclick=submit()> <script language=javascript>function submit(){document.form.formName.submit();}</script> 阅读全文
posted @ 2019-10-18 11:14 Curedfisher 阅读(498) 评论(0) 推荐(0) 编辑
摘要: 把注册的按钮改成button:<form action="dologin.jsp" method="post">用户<input type="text" name="name"><br>密码<input type="password" name="pass"><br><input type="sub 阅读全文
posted @ 2019-10-18 11:12 Curedfisher 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 1. 2. . . 阅读全文
posted @ 2019-10-17 11:36 Curedfisher 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 1. getServletPath():获取能够与“url-pattern”中匹配的路径,注意是完全匹配的部分,*的部分不包括。 2.getContextPath():获取项目的根路径 阅读全文
posted @ 2019-10-16 10:21 Curedfisher 阅读(313) 评论(0) 推荐(0) 编辑
摘要: uri:https://blog.csdn.net/qq_39938457/article/details/83181684 阅读全文
posted @ 2019-10-15 16:16 Curedfisher 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 在Java语言中,能够独立运行的程序称为Java应用程序(Application)。Java语言还有另外一种程序——Applet程序。Applet程序(也称Java小程序)是运行于各种网页文件中,用于增强网页的人机交互、动画显示、声音播放等功能的程序。Java Applet和Java Applica 阅读全文
posted @ 2019-10-15 15:37 Curedfisher 阅读(10521) 评论(0) 推荐(1) 编辑