07 2015 档案

摘要:具体说原理的话,两个字符串相加,相当于执行了如下操作:str1 + str2 执行了下面的过程:StringBuffersb1= new StringBuffer(str1);sb1.append(str2);String result1 =sb1.toString();执行到最后,我们所需要的内容... 阅读全文
posted @ 2015-07-25 19:42 sunshinelym 阅读(123) 评论(0) 推荐(0)
摘要:http://lusterfly.iteye.com/blog/1872627在myeclipse 9以前的版本中,我们如果要为html编辑器添加自动的代码提示可以这样操作:windows-->preferences-->MyEclipse-->Files and Editors-->HTML-->... 阅读全文
posted @ 2015-07-08 16:05 sunshinelym 阅读(925) 评论(0) 推荐(0)