String对象加载场内存方式有两种,一种是直接使用“”号创建的加载内存时会会把该字符串直接加载到字符常量中去,并且后文中出现相同使用“”号定义的常量时不会再在内存中创建直接使用第一次创建的字符串,另一种直接使用构造器创建的会创建出一个新的字符串,String常见构造器有String(byte[]),String (chat[]),String(String)等。
常见String Api
public char charAt(int index)获取字符串index索引下的字符
public char[] toCharArray()把对应字符串转换成字符数组返回
public String subString(int index1,int index2)吧字符串的index1索引对应的字符一直到不包含index2索引字符的字符串输出返回
public String subString(int index1)吧index1索引下至追后一个字符都截取
public String replace(String str1 ,String str2)吧字符串中包含str1的换成str2;
pubile boolean contains(String str1)判断字符串中是否包含str1;
public boolean startsWith(String str)判断字符串是否是以str开头;文章来源:https://www.toymoban.com/news/detail-670855.html
public String[] split(String str)以str为分隔符吧字符串拆分成字符数组;文章来源地址https://www.toymoban.com/news/detail-670855.html
到了这里,关于java开发中常见的String对象的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!