摘要:
貌似官网上Struts 1.X的下载地址木有了,所以在网上搜了别人整理的可以直接下载的资源。试过,好用。 Struts 1.3.10 is the latest production release of Struts 1. It is available in a full distribution, or as separate library, source, example and documentation distributions. Full Distribution: struts-1.3.10-all.zip [PGP] [MD5] •Library: struts-1.3. 阅读全文
摘要:
大三快要结束了,面临着找工作的困境。而自己的技术还是一塌糊涂。大一大二,把精力过度地放在了日语和英语的学习上,也许那个时候自己是真的没有打算将来当一名程序员吧。也许没有想过,自己会变得如此喜欢技术。现如今,也是多说无益。后悔这个词,是说多少遍也没用的,我想我现在能做的,就是抓紧一切时间巩固突击java了。好在大学毕业不是人生毕业,我还有很多的机会,还有无价的青春。懵懂过了,愚昧过了,疯狂过了,剩下的时间,就要沉下心来,踏踏实实地做点事情了。ALL IS WELL. 阅读全文
摘要:
检测数组中基本数据类型的初始值、public class Test{ public static void main(String []args) { double []d = new double[1]; char []c = new char[1]; int []i = new int[1]; float []f = new float[1]; boolean []b = new boolean[1]; System.out.println(d[0]); System.out.println(c[0]); System.out.println(i[0]); System.out.print 阅读全文