1、indexOf :检查String 对象中是否存在某某字符段。-1:表示不存在;0:表示第一位。以此类推~
例子如下:String test1 = "ABCaad esl";
(test1.indexOf(ABC)==0)?true;
(test1.indexOf(aa)==3)?true;
2、String对象如果用+号来拼接的话,初始定义最好为""不要为null。
比如1:String test1 = "";
String test2 = "abc";
String test3 = "eef";
结果:test1+test2+test3="abceef";
比如2:String test1 = null;
String test2 = "abc";
String test3 = "eef";
结果:test1+test2+test3="nullabceef";
3、做密码保存开发的过程中一定要用String类型进行保存,不能用int或者Integer,因为用int或者Integer的话很容易产生如:000000,000001这样的数据存放进去的时候就一个0
,或者一个1的情况。