String字符串的几个的简单方法
toString() 返回对应对象的字符串
hashCode() 返回对应对象的哈希码值
equals() 指示其他某个对象是否与当前对象”相等”
int length() 返回此字符串的长度
String toUpperCase() 所有字符都转换为大写 String toLowerCase() 所有字符都转换为小写
split("f") 指定字符作为分隔符,分割当前字符串
substring(3,6) 根据字符串的下标进行截取
String.valueOf(10) 将int类型转换为String类型
getBytes() 将指定字符串转为byte[]类型
int indexOf(String st
共有 0 条评论