Java中关于String的常⽤函数⼀、 构造⽅法:
*  public String():创建String对象
*  public String(byte[] bytes):把字节数组转成字符串。
*  public String(byte[] bytes,int index,int length):把字节数组中的⼀部分转成字符串
*  public String(char[] value):把字符数组转成字符串
*  public String(char[] value,int index,int count):把字符数组的⼀部分转成字符串
*  public String(String original):把字符串转成字符串
注意问题:
*  1:输出语句输出任何对象名称的时候,默认调⽤的是该对象的toString()⽅法。
*    ⽽toString()⽅法默认输出的是包名...类名@哈希值的⼗六进制。
*  如果,你⽤输出语句输出⼀个对象名称的时候,发现不是这个格式,说明了该类重写了toString()⽅法。  *  2:返回此字符串的长度
*  public int length()
*
⼆、String s = new String("hello")和String s ="hello"; 的区别:
==:⽐较的是引⽤类型,⽐较的是地址值即:
System.out.println(s1 == s2); // false
equal():默认⽐较的是地址值。String类重写了equals()⽅法,该⽅法的作⽤是⽐较字符串的内容是否相同System.out.println(s1.equals(s2)); // true
三、 * 字符串变量相加:先开空间,再加内容
* 字符串常量相加:先加,再,没有再开空间
String s1 = "hello";
String s2 = "world";
String s3 = "helloworld";
String s4 = s1 + s2;
String s5 = "hello"+"world";
即s4和s5的区别。
四、String类的判断功能:
* boolean equals(Object obj):⽐较字符串的内容是否相同,严格区分⼤⼩写
* boolean equalsIgnoreCase(String str):⽐较字符串的内容是否相同,不考虑⼤⼩写
* boolean contains(String str):判断是否包含指定的⼩串
* boolean startsWith(String str):判断是否以指定的字符串开头
* boolean endsWith(String str):判断是否以指定的字符串结尾
* boolean isEmpty():判断字符串的内容是否为空
五、String类的获取功能:
* int length():返回字符串的长度。字符的个数。
* char charAt(int index):返回字符串中指定位置的字符。
* int indexOf(int ch):返回指定字符在字符串中第⼀次出现的位置
* int indexOf(String str):返回指定字符串在字符串中第⼀次出现的位置
* int indexOf(int ch,int fromIndex):返回指定字符从指定位置开始在字符串中第⼀次出现的位置
* int indexOf(String str,int fromIndex):返回指定字符串从指定位置开始在字符串中第⼀次出现的位置 * String substring(int start):返回从指定位置开始到末尾的⼦串
* String substring(int start,int end):返回从指定位置开始到指定位置结束的⼦串----注意左包右不包
六、String的转换功能:
* byte[] getBytes():把字符串转换为字节数组
* char[] toCharArray():把字符串转换为字符数组
* static String valueOf(char[] chs):把字符数组转成字符串
* static String valueOf(int i):把int类型的数据转成字符串
* 把任意类型转换为字符串的⽅法。
* String toLowerCase():把字符串转⼩写
* String toUpperCase():把字符串转⼤写
* String concat(String str):字符串的连接
替换功能:
* String replace(char old,char new)
* String replace(String old,String new)c++中string的用法
去除字符串两空格:
*      String trim()
按字典顺序⽐较两个字符串  a-z
* int compareTo(String str)
* int compareToIgnoreCase(String str)

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。