(1)String类的特征
a.字面值常量"abc"也可以看成是一个字符串对象
b.字符串常量,一旦被赋值就不能被改变
(2)String类的构造方法
*public 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);把字符串常量值转成字符串
(3)String类的常见判断功能
*boolean equals(Object obj);比较字符串的内容是否相同,区分大小写
*boolean equalsIgnoreCase(String str);比较字符串的内容是否相同,忽略大小写
*boolean contains(String str);判断字符串中是否包含小字符串
*boolean startsWith(String str);判断字符串是否以某个指定的字符串开头
*boolean endsWith(String str);判断字符串是否以某个制定的字符串结尾
*boolean isEmpty();判断字符串是否为空
(4)String类的常见获取功能
*int length();获取字符串的长度
*char charAt(int index):获取制定索引位置的字符
*int indexOf(intch):返回指定字符在此字符串中第一次出现处的索引
*int indexOf(String str),返回指定字符串在此字符串中第一次出现处的索引
*int indexOf(int ch,int fromIndex):返回制定字符串在此字符串中从指定位置后第一次出现处的索引
*int indexOf(String str,int fromIndex);返回制定字符串在此字符串中从指定位置后第一次出现处的索引.
*lastIndexOf
*String substring(int start):从指定位置开始截取字符串,默认到末尾
*String substring(int start,int end);从指定位置开始到指定位置结束截取字符串
(5)String类的常见转换功能
*byte[] getBytes();把字符串转换为字节数组.
*char[] toCharArray();把字符串转换为字符数组
*static String valueOf(char[] chs);把字符数组转成字符串
*static String valueOf(int i);把int类型的数据转成字符串
*注意:String类的valueOf方法可以把任意类型的数据转成字符串
*String toLowerCase():把字符串转成小写
*String toUpperCase();把字符串转成大写
*String concat(String str):把字符串拼接
(6)String类的常见其他功能
*String replace(char old,char new);用new代替字符串中的old字符
*String replace(String old,String new);用new字符串代替本串中的old字符串
*String trim();去除本串中的前后空格
*int compareTo(Sting str);按字典顺序比较两个字符串
*int compareToIgnoreCase(String str);忽略大小写比较
今天讲的东西好多啊,根本记不住啊,把老师的笔记整理一下,希望明天就都记住了 |