摘要: 一.String类:String的常用方法:1. public char charAt(int index) 返回字符串中的index个字符2. public int length() 返回字符串长度3. public int indexOf(String str) 返回字符串中出现str的第一个位置,如果没有找到,则返回-14. public boolean equalsIgnoreCase(String another) 比较字符串与another是否相同(忽略大小写)5. public String replace(char oldChar, char newChar) 在字符... 阅读全文
posted @ 2013-03-23 20:17 佬D 阅读(11821) 评论(0) 推荐(1) 编辑