2014.8.12日结
1.java中的字符串反转
http://blog.sina.com.cn/s/blog_a5ef63c701013dw8.html
2.正则表达式
http://www.cnblogs.com/bvbook/archive/2010/11/03/1867775.html
http://blog.csdn.net/kdnuggets/article/details/2526588
3.replaceAll
http://www.blogjava.net/hill/archive/2009/04/29/268065.html
4.hashkey
http://www.cnblogs.com/felixfang/p/3706217.html
5.有时需要定义起始位最大值,防止比较出错
int minLength=Integer.MAX_VALUE;
6.vector的操作
照着arraylist操作就可以了,就是正常的集合类
7.stringbuider和stringbuffer的作用和演练
8.判断字符串是否为数字
http://www.blogjava.net/Javaphua/archive/2007/06/05/122131.html
9.linkedlist遍历问题
10.java不在一个包,成员变量必须public?
11.stack源自哪个类?
vector类
12.Java中的const变量?
用final
13.string str=1+'c'查看加出来的结果
14.charsequence 和string
15.String str=null;不可以对str做length()操作
String str="";length()=0
参考链接:http://feiluo-2009.blog.163.com/blog/static/11087551620104191927552/
16.String str1="123";String str2="123";
str1和str2拥有同一个地址,==是判断是否是同一个地址的equals是判断内容
只有引号内包含文本创建对象才会将创建的对象放入到字符串池
参考链接:http://blog.sina.com.cn/s/blog_532637060100gkfc.html

浙公网安备 33010602011771号