int find_first_of(char c, int start = 0): 查找字符串中第1个出现的c,由位置start开始. 如果有匹配,则返回匹配位置:否则,返回-1.默认情况下,start为0,函数搜索 整个字符串. int find_last_of(char c): 查找字符串中最后一个出现的c.有匹配,则返回匹配位置:否则返回-1. …
String的用法很活跃,也用到的很多.可以根据自己的需要查询API.这里只有concat和substring,indexof的用法 class TestString { public static void main(String[] args) { String s = new String("12cx;x"); String a = "cxx"; System.out.println(s); System.out.println(a); System.out.…