java中的所有的字符串文字(例如"abc","123")都可以看做是实现了此类的实例对象

eg:

    String str = new String();
str = "123";
str = "abc";

String类的特点:

     1.字符串字面值常量,不变的
2.实现共享
3.内部封装了很多对于字符和字符串操作的API方法
4.Java 语言提供对字符串串联符号("+")以及将其他对象转换为字符串的特殊支持。
5.凡是能够用"+"连接字符串的结果值类型都会转变成字符串类型
通过StringBuilder中的append方法实现的(把两种类型相加)
字符串转换通过toString方法实现的(变为字符串)
true +"" --> "true"
123 + "" --> "123"
3.14 + ""--> "3.14"

String类的常用用法以及使用格式:

序号旁边的是使用格式

    //1.charAt(int index )返回指定索引处的字符值

      String str = "abcds";
      char sss = str.charAt(3);
      System.out.println(sss);

char ssss = str.charAt(6);这个索引越界
System.out.println(ssss);
     //相当于字符串的索引,设置好字符串,用charAt对第四个字符定位输出,
     //其中定位数字3不能越界这里的字符串长度为6,因为是从0开始所以最大定位数字为5,

//2.codePoinAt(int index) //根据字符串的索引进行定位并转换成阿斯克码表上其对应的序号
     String str = "aBbcds"
int codePointAt = str.codePointAt(1);
System.out.println(codePointAt);// B -->66 b-->98(根据阿斯克码表)


  //3.compareTo(String str)
int compareTo = str2.compareTo(str);
//this.charAt(k)-anotherString.charAt(k)
//this.length()-anotherString.length()
System.out.println(compareTo);
//4.compareToIgnoreCase(String str) 忽视大小写比较字符串
int compareToIgnoreCase = str2.compareToIgnoreCase(str);
//5.concat(String str)
String concat = str.concat(str2);
System.out.println(concat);// Abc123afg123
//6.Contains(CharSequence s) [重要]
boolean contains = str2.contains("f23");// f23是一个整体不可分割
System.out.println(contains);//true false
//7.endsWith(String suffix ) suffix 后缀 prefix 前线
boolean endsWith = str2.endsWith("23");
System.out.println(endsWith);
//8 starsWith(String prefix) [重要] 是否以某个字符串为结尾
boolean StartsWith = str2.startsWith("afg");
System.out.println(StartsWith);
//9. 相等判断equals(Object o) 重要 相等判断
boolean equals = str.equals(str2);
System.out.println(equals);
//10.getBytes() byte[] "afg123"
byte[] bytes = str2.getBytes();
for (int i = 0; i < bytes.length; i++) {
System.out.print(bytes[i] + " ");
}
// UTF-8 GBK ISO-8859-1 Unicode //src 来源 dst 目的地
char[] dst = new char[10];// 10个元素 (没有东西)
//11.getChars(int srcBegin,int srcEnd,char[] dst,int dstBegin)
//"afg123"
str2.getChars(2, 5, dst,4);//第五个位置
for (int i = 0; i < dst.length; i++) {
System.out.println(dst[i] + " ");
}
//str2 = "afg123"
//12. int indexOf(String str) 获取字符串第一次出现该字符串对应的索引位置 【重要】
int indexOf = str2.indexOf("12");//
System.out.println(indexOf);// 3
//13. int length()获取字符串的长度值 【重要】
int length = str2.length();
System.out.println(length);
//14.replace(CharSequence target, CharSequence replacement)
String replace = str2.replace("a", "e");// 把旧的字符串替换成新的字符串
System.out.println(replace);//ebc123ebc456
//15. split(String regex)根据指定的字符分割成字符串数组【重要】
//regex - 定界正则表达式
String str4 = "张三-李四-王五-赵六-abc";
String[] split = str4.split("-");
//相当于split = {"张三","李四","王五","赵六","abc"}
for (int i = 0; i < split.length; i++) {
System.out.print(split[i] + " ");
}
System.out.println();
String str5 = "abc.bcd.fff.123";
String[] split2 = str5.split("\\.");// 用.分割的话需要用需要用双反斜杠
// \---反斜杠 /---正斜杠 在字符串中"\"代表转义
for (int i = 0; i < split2.length; i++) {
System.out.print(split2[i] + " ");// abc bcd fff 123
} System.out.println();
String str6 = "123456789abc";
String[] split3 = str6.split("");//空字符串做分隔符
for (int i = 0; i < split3.length; i++) {
System.out.print(split3[i] + " ");//1,2,3,4,5,6,7,8,9,a,b,c
} //16.substring(int beginIndex,int endIndex) [a,b) 截取字符串 生成一个新的字符串
// 获取str6字符串中6789值
String substring = str6.substring(5, 9);
System.out.println(substring); //17. toLowerCase()小写 toUpperCase()大写
//18.String trim(() 去掉该字符串前后两端的空格
String str7 = " abc 123 ";
System.out.println("--"+str7+"--");
String trim = str7.trim();
System.out.println("--"+ trim + "--");
//19. static valueOf(Object o) 把非字符串类型转换成字符串类型,内容值不变
String valueOf = String.valueOf(abc);
System.out.println(valueOf);//123

------------恢复内容开始------------

java中的所有的字符串文字(例如"abc","123")都可以看做是实现了此类的实例对象

eg:

    String str = new String();
str = "123";
str = "abc";

String类的特点:

     1.字符串字面值常量,不变的
2.实现共享
3.内部封装了很多对于字符和字符串操作的API方法
4.Java 语言提供对字符串串联符号("+")以及将其他对象转换为字符串的特殊支持。
5.凡是能够用"+"连接字符串的结果值类型都会转变成字符串类型
通过StringBuilder中的append方法实现的(把两种类型相加)
字符串转换通过toString方法实现的(变为字符串)
true +"" --> "true"
123 + "" --> "123"
3.14 + ""--> "3.14"

String类的常用用法以及使用格式:

序号旁边的是使用格式

    //1.charAt(int index )返回指定索引处的字符值

      String str = "abcds";
      char sss = str.charAt(3);
      System.out.println(sss);

char ssss = str.charAt(6);这个索引越界
System.out.println(ssss);
     //相当于字符串的索引,设置好字符串,用charAt对第四个字符定位输出,
     //其中定位数字3不能越界这里的字符串长度为6,因为是从0开始所以最大定位数字为5,

//2.codePoinAt(int index) //根据字符串的索引进行定位并转换成阿斯克码表上其对应的序号
     String str = "aBbcds"
int codePointAt = str.codePointAt(1);
System.out.println(codePointAt);// B -->66 b-->98(根据阿斯克码表)


  //3.compareTo(String str)
int compareTo = str2.compareTo(str);
//this.charAt(k)-anotherString.charAt(k)
//this.length()-anotherString.length()
System.out.println(compareTo);
//4.compareToIgnoreCase(String str) 忽视大小写比较字符串
int compareToIgnoreCase = str2.compareToIgnoreCase(str);
//5.concat(String str)
String concat = str.concat(str2);
System.out.println(concat);// Abc123afg123
//6.Contains(CharSequence s) [重要]
boolean contains = str2.contains("f23");// f23是一个整体不可分割
System.out.println(contains);//true false
//7.endsWith(String suffix ) suffix 后缀 prefix 前线
boolean endsWith = str2.endsWith("23");
System.out.println(endsWith);
//8 starsWith(String prefix) [重要] 是否以某个字符串为结尾
boolean StartsWith = str2.startsWith("afg");
System.out.println(StartsWith);
//9. 相等判断equals(Object o) 重要 相等判断
boolean equals = str.equals(str2);
System.out.println(equals);
//10.getBytes() byte[] "afg123"
byte[] bytes = str2.getBytes();
for (int i = 0; i < bytes.length; i++) {
System.out.print(bytes[i] + " ");
}
// UTF-8 GBK ISO-8859-1 Unicode //src 来源 dst 目的地
char[] dst = new char[10];// 10个元素 (没有东西)
//11.getChars(int srcBegin,int srcEnd,char[] dst,int dstBegin)
//"afg123"
str2.getChars(2, 5, dst,4);//第五个位置
for (int i = 0; i < dst.length; i++) {
System.out.println(dst[i] + " ");
}
//str2 = "afg123"
//12. int indexOf(String str) 获取字符串第一次出现该字符串对应的索引位置 【重要】
int indexOf = str2.indexOf("12");//
System.out.println(indexOf);// 3
//13. int length()获取字符串的长度值 【重要】
int length = str2.length();
System.out.println(length);
//14.replace(CharSequence target, CharSequence replacement)
String replace = str2.replace("a", "e");// 把旧的字符串替换成新的字符串
System.out.println(replace);//ebc123ebc456
//15. split(String regex)根据指定的字符分割成字符串数组【重要】
//regex - 定界正则表达式
String str4 = "张三-李四-王五-赵六-abc";
String[] split = str4.split("-");
//相当于split = {"张三","李四","王五","赵六","abc"}
for (int i = 0; i < split.length; i++) {
System.out.print(split[i] + " ");
}
System.out.println();
String str5 = "abc.bcd.fff.123";
String[] split2 = str5.split("\\.");// 用.分割的话需要用需要用双反斜杠
// \---反斜杠 /---正斜杠 在字符串中"\"代表转义
for (int i = 0; i < split2.length; i++) {
System.out.print(split2[i] + " ");// abc bcd fff 123
} System.out.println();
String str6 = "123456789abc";
String[] split3 = str6.split("");//空字符串做分隔符
for (int i = 0; i < split3.length; i++) {
System.out.print(split3[i] + " ");//1,2,3,4,5,6,7,8,9,a,b,c
} //16.substring(int beginIndex,int endIndex) [a,b) 截取字符串 生成一个新的字符串
// 获取str6字符串中6789值
String substring = str6.substring(5, 9);
System.out.println(substring); //17. toLowerCase()小写 toUpperCase()大写
//18.String trim(() 去掉该字符串前后两端的空格
String str7 = " abc 123 ";
System.out.println("--"+str7+"--");
String trim = str7.trim();
System.out.println("--"+ trim + "--");
//19. static valueOf(Object o) 把非字符串类型转换成字符串类型,内容值不变
String valueOf = String.valueOf(abc);
System.out.println(valueOf);//123

------------恢复内容结束------------

------------恢复内容开始------------

java中的所有的字符串文字(例如"abc","123")都可以看做是实现了此类的实例对象

eg:

    String str = new String();
str = "123";
str = "abc";

String类的特点:

     1.字符串字面值常量,不变的
2.实现共享
3.内部封装了很多对于字符和字符串操作的API方法
4.Java 语言提供对字符串串联符号("+")以及将其他对象转换为字符串的特殊支持。
5.凡是能够用"+"连接字符串的结果值类型都会转变成字符串类型
通过StringBuilder中的append方法实现的(把两种类型相加)
字符串转换通过toString方法实现的(变为字符串)
true +"" --> "true"
123 + "" --> "123"
3.14 + ""--> "3.14"

String类的常用用法以及使用格式:

序号旁边的是使用格式

    //1.charAt(int index )返回指定索引处的字符值

      String str = "abcds";
      char sss = str.charAt(3);
      System.out.println(sss);

char ssss = str.charAt(6);这个索引越界
System.out.println(ssss);
     //相当于字符串的索引,设置好字符串,用charAt对第四个字符定位输出,
     //其中定位数字3不能越界这里的字符串长度为6,因为是从0开始所以最大定位数字为5,

//2.codePoinAt(int index) //根据字符串的索引进行定位并转换成阿斯克码表上其对应的序号
     String str = "aBbcds"
int codePointAt = str.codePointAt(1);
System.out.println(codePointAt);// B -->66 b-->98(根据阿斯克码表)


  //3.compareTo(String str)
int compareTo = str2.compareTo(str);
//this.charAt(k)-anotherString.charAt(k)
//this.length()-anotherString.length()
System.out.println(compareTo);
//4.compareToIgnoreCase(String str) 忽视大小写比较字符串
int compareToIgnoreCase = str2.compareToIgnoreCase(str);
//5.concat(String str)
String concat = str.concat(str2);
System.out.println(concat);// Abc123afg123
//6.Contains(CharSequence s) [重要]
boolean contains = str2.contains("f23");// f23是一个整体不可分割
System.out.println(contains);//true false
//7.endsWith(String suffix ) suffix 后缀 prefix 前线
boolean endsWith = str2.endsWith("23");
System.out.println(endsWith);
//8 starsWith(String prefix) [重要] 是否以某个字符串为结尾
boolean StartsWith = str2.startsWith("afg");
System.out.println(StartsWith);
//9. 相等判断equals(Object o) 重要 相等判断
boolean equals = str.equals(str2);
System.out.println(equals);
//10.getBytes() byte[] "afg123"
byte[] bytes = str2.getBytes();
for (int i = 0; i < bytes.length; i++) {
System.out.print(bytes[i] + " ");
}
// UTF-8 GBK ISO-8859-1 Unicode //src 来源 dst 目的地
char[] dst = new char[10];// 10个元素 (没有东西)
//11.getChars(int srcBegin,int srcEnd,char[] dst,int dstBegin)
//"afg123"
str2.getChars(2, 5, dst,4);//第五个位置
for (int i = 0; i < dst.length; i++) {
System.out.println(dst[i] + " ");
}
//str2 = "afg123"
//12. int indexOf(String str) 获取字符串第一次出现该字符串对应的索引位置 【重要】
int indexOf = str2.indexOf("12");//
System.out.println(indexOf);// 3
//13. int length()获取字符串的长度值 【重要】
int length = str2.length();
System.out.println(length);
//14.replace(CharSequence target, CharSequence replacement)
String replace = str2.replace("a", "e");// 把旧的字符串替换成新的字符串
System.out.println(replace);//ebc123ebc456
//15. split(String regex)根据指定的字符分割成字符串数组【重要】
//regex - 定界正则表达式
String str4 = "张三-李四-王五-赵六-abc";
String[] split = str4.split("-");
//相当于split = {"张三","李四","王五","赵六","abc"}
for (int i = 0; i < split.length; i++) {
System.out.print(split[i] + " ");
}
System.out.println();
String str5 = "abc.bcd.fff.123";
String[] split2 = str5.split("\\.");// 用.分割的话需要用需要用双反斜杠
// \---反斜杠 /---正斜杠 在字符串中"\"代表转义
for (int i = 0; i < split2.length; i++) {
System.out.print(split2[i] + " ");// abc bcd fff 123
} System.out.println();
String str6 = "123456789abc";
String[] split3 = str6.split("");//空字符串做分隔符
for (int i = 0; i < split3.length; i++) {
System.out.print(split3[i] + " ");//1,2,3,4,5,6,7,8,9,a,b,c
} //16.substring(int beginIndex,int endIndex) [a,b) 截取字符串 生成一个新的字符串
// 获取str6字符串中6789值
String substring = str6.substring(5, 9);
System.out.println(substring); //17. toLowerCase()小写 toUpperCase()大写
//18.String trim(() 去掉该字符串前后两端的空格
String str7 = " abc 123 ";
System.out.println("--"+str7+"--");
String trim = str7.trim();
System.out.println("--"+ trim + "--");
//19. static valueOf(Object o) 把非字符串类型转换成字符串类型,内容值不变
String valueOf = String.valueOf(abc);
System.out.println(valueOf);//123

------------恢复内容开始------------

java中的所有的字符串文字(例如"abc","123")都可以看做是实现了此类的实例对象

eg:

    String str = new String();
str = "123";
str = "abc";

String类的特点:

     1.字符串字面值常量,不变的
2.实现共享
3.内部封装了很多对于字符和字符串操作的API方法
4.Java 语言提供对字符串串联符号("+")以及将其他对象转换为字符串的特殊支持。
5.凡是能够用"+"连接字符串的结果值类型都会转变成字符串类型
通过StringBuilder中的append方法实现的(把两种类型相加)
字符串转换通过toString方法实现的(变为字符串)
true +"" --> "true"
123 + "" --> "123"
3.14 + ""--> "3.14"

String类的常用用法以及使用格式:

序号旁边的是使用格式

    //1.charAt(int index )返回指定索引处的字符值

      String str = "abcds";
      char sss = str.charAt(3);
      System.out.println(sss);

char ssss = str.charAt(6);这个索引越界
System.out.println(ssss);
     //相当于字符串的索引,设置好字符串,用charAt对第四个字符定位输出,
     //其中定位数字3不能越界这里的字符串长度为6,因为是从0开始所以最大定位数字为5,

//2.codePoinAt(int index) //根据字符串的索引进行定位并转换成阿斯克码表上其对应的序号
     String str = "aBbcds"
int codePointAt = str.codePointAt(1);
System.out.println(codePointAt);// B -->66 b-->98(根据阿斯克码表)


  //3.compareTo(String str)
int compareTo = str2.compareTo(str);
//this.charAt(k)-anotherString.charAt(k)
//this.length()-anotherString.length()
System.out.println(compareTo);
//4.compareToIgnoreCase(String str) 忽视大小写比较字符串
int compareToIgnoreCase = str2.compareToIgnoreCase(str);
//5.concat(String str)
String concat = str.concat(str2);
System.out.println(concat);// Abc123afg123
//6.Contains(CharSequence s) [重要]
boolean contains = str2.contains("f23");// f23是一个整体不可分割
System.out.println(contains);//true false
//7.endsWith(String suffix ) suffix 后缀 prefix 前线
boolean endsWith = str2.endsWith("23");
System.out.println(endsWith);
//8 starsWith(String prefix) [重要] 是否以某个字符串为结尾
boolean StartsWith = str2.startsWith("afg");
System.out.println(StartsWith);
//9. 相等判断equals(Object o) 重要 相等判断
boolean equals = str.equals(str2);
System.out.println(equals);
//10.getBytes() byte[] "afg123"
byte[] bytes = str2.getBytes();
for (int i = 0; i < bytes.length; i++) {
System.out.print(bytes[i] + " ");
}
// UTF-8 GBK ISO-8859-1 Unicode //src 来源 dst 目的地
char[] dst = new char[10];// 10个元素 (没有东西)
//11.getChars(int srcBegin,int srcEnd,char[] dst,int dstBegin)
//"afg123"
str2.getChars(2, 5, dst,4);//第五个位置
for (int i = 0; i < dst.length; i++) {
System.out.println(dst[i] + " ");
}
//str2 = "afg123"
//12. int indexOf(String str) 获取字符串第一次出现该字符串对应的索引位置 【重要】
int indexOf = str2.indexOf("12");//
System.out.println(indexOf);// 3
//13. int length()获取字符串的长度值 【重要】
int length = str2.length();
System.out.println(length);
//14.replace(CharSequence target, CharSequence replacement)
String replace = str2.replace("a", "e");// 把旧的字符串替换成新的字符串
System.out.println(replace);//ebc123ebc456
//15. split(String regex)根据指定的字符分割成字符串数组【重要】
//regex - 定界正则表达式
String str4 = "张三-李四-王五-赵六-abc";
String[] split = str4.split("-");
//相当于split = {"张三","李四","王五","赵六","abc"}
for (int i = 0; i < split.length; i++) {
System.out.print(split[i] + " ");
}
System.out.println();
String str5 = "abc.bcd.fff.123";
String[] split2 = str5.split("\\.");// 用.分割的话需要用需要用双反斜杠
// \---反斜杠 /---正斜杠 在字符串中"\"代表转义
for (int i = 0; i < split2.length; i++) {
System.out.print(split2[i] + " ");// abc bcd fff 123
} System.out.println();
String str6 = "123456789abc";
String[] split3 = str6.split("");//空字符串做分隔符
for (int i = 0; i < split3.length; i++) {
System.out.print(split3[i] + " ");//1,2,3,4,5,6,7,8,9,a,b,c
} //16.substring(int beginIndex,int endIndex) [a,b) 截取字符串 生成一个新的字符串
// 获取str6字符串中6789值
String substring = str6.substring(5, 9);
System.out.println(substring); //17. toLowerCase()小写 toUpperCase()大写
//18.String trim(() 去掉该字符串前后两端的空格
String str7 = " abc 123 ";
System.out.println("--"+str7+"--");
String trim = str7.trim();
System.out.println("--"+ trim + "--");
//19. static valueOf(Object o) 把非字符串类型转换成字符串类型,内容值不变
String valueOf = String.valueOf(abc);
System.out.println(valueOf);//123

------------恢复内容结束------------

------------恢复内容结束------------

------------恢复内容开始------------

java中的所有的字符串文字(例如"abc","123")都可以看做是实现了此类的实例对象

eg:

    String str = new String();
str = "123";
str = "abc";

String类的特点:

     1.字符串字面值常量,不变的
2.实现共享
3.内部封装了很多对于字符和字符串操作的API方法
4.Java 语言提供对字符串串联符号("+")以及将其他对象转换为字符串的特殊支持。
5.凡是能够用"+"连接字符串的结果值类型都会转变成字符串类型
通过StringBuilder中的append方法实现的(把两种类型相加)
字符串转换通过toString方法实现的(变为字符串)
true +"" --> "true"
123 + "" --> "123"
3.14 + ""--> "3.14"

String类的常用用法以及使用格式:

序号旁边的是使用格式

    //1.charAt(int index )返回指定索引处的字符值

      String str = "abcds";
      char sss = str.charAt(3);
      System.out.println(sss);

char ssss = str.charAt(6);这个索引越界
System.out.println(ssss);
     //相当于字符串的索引,设置好字符串,用charAt对第四个字符定位输出,
     //其中定位数字3不能越界这里的字符串长度为6,因为是从0开始所以最大定位数字为5,

//2.codePoinAt(int index) //根据字符串的索引进行定位并转换成阿斯克码表上其对应的序号
     String str = "aBbcds"
int codePointAt = str.codePointAt(1);
System.out.println(codePointAt);// B -->66 b-->98(根据阿斯克码表)


  //3.compareTo(String str)
int compareTo = str2.compareTo(str);
//this.charAt(k)-anotherString.charAt(k)
//this.length()-anotherString.length()
System.out.println(compareTo);
//4.compareToIgnoreCase(String str) 忽视大小写比较字符串
int compareToIgnoreCase = str2.compareToIgnoreCase(str);
//5.concat(String str)
String concat = str.concat(str2);
System.out.println(concat);// Abc123afg123
//6.Contains(CharSequence s) [重要]
boolean contains = str2.contains("f23");// f23是一个整体不可分割
System.out.println(contains);//true false
//7.endsWith(String suffix ) suffix 后缀 prefix 前线
boolean endsWith = str2.endsWith("23");
System.out.println(endsWith);
//8 starsWith(String prefix) [重要] 是否以某个字符串为结尾
boolean StartsWith = str2.startsWith("afg");
System.out.println(StartsWith);
//9. 相等判断equals(Object o) 重要 相等判断
boolean equals = str.equals(str2);
System.out.println(equals);
//10.getBytes() byte[] "afg123"
byte[] bytes = str2.getBytes();
for (int i = 0; i < bytes.length; i++) {
System.out.print(bytes[i] + " ");
}
// UTF-8 GBK ISO-8859-1 Unicode //src 来源 dst 目的地
char[] dst = new char[10];// 10个元素 (没有东西)
//11.getChars(int srcBegin,int srcEnd,char[] dst,int dstBegin)
//"afg123"
str2.getChars(2, 5, dst,4);//第五个位置
for (int i = 0; i < dst.length; i++) {
System.out.println(dst[i] + " ");
}
//str2 = "afg123"
//12. int indexOf(String str) 获取字符串第一次出现该字符串对应的索引位置 【重要】
int indexOf = str2.indexOf("12");//
System.out.println(indexOf);// 3
//13. int length()获取字符串的长度值 【重要】
int length = str2.length();
System.out.println(length);
//14.replace(CharSequence target, CharSequence replacement)
String replace = str2.replace("a", "e");// 把旧的字符串替换成新的字符串
System.out.println(replace);//ebc123ebc456
//15. split(String regex)根据指定的字符分割成字符串数组【重要】
//regex - 定界正则表达式
String str4 = "张三-李四-王五-赵六-abc";
String[] split = str4.split("-");
//相当于split = {"张三","李四","王五","赵六","abc"}
for (int i = 0; i < split.length; i++) {
System.out.print(split[i] + " ");
}
System.out.println();
String str5 = "abc.bcd.fff.123";
String[] split2 = str5.split("\\.");// 用.分割的话需要用需要用双反斜杠
// \---反斜杠 /---正斜杠 在字符串中"\"代表转义
for (int i = 0; i < split2.length; i++) {
System.out.print(split2[i] + " ");// abc bcd fff 123
} System.out.println();
String str6 = "123456789abc";
String[] split3 = str6.split("");//空字符串做分隔符
for (int i = 0; i < split3.length; i++) {
System.out.print(split3[i] + " ");//1,2,3,4,5,6,7,8,9,a,b,c
} //16.substring(int beginIndex,int endIndex) [a,b) 截取字符串 生成一个新的字符串
// 获取str6字符串中6789值
String substring = str6.substring(5, 9);
System.out.println(substring); //17. toLowerCase()小写 toUpperCase()大写
//18.String trim(() 去掉该字符串前后两端的空格
String str7 = " abc 123 ";
System.out.println("--"+str7+"--");
String trim = str7.trim();
System.out.println("--"+ trim + "--");
//19. static valueOf(Object o) 把非字符串类型转换成字符串类型,内容值不变
String valueOf = String.valueOf(abc);
System.out.println(valueOf);//123

------------恢复内容开始------------

java中的所有的字符串文字(例如"abc","123")都可以看做是实现了此类的实例对象

eg:

    String str = new String();
str = "123";
str = "abc";

String类的特点:

     1.字符串字面值常量,不变的
2.实现共享
3.内部封装了很多对于字符和字符串操作的API方法
4.Java 语言提供对字符串串联符号("+")以及将其他对象转换为字符串的特殊支持。
5.凡是能够用"+"连接字符串的结果值类型都会转变成字符串类型
通过StringBuilder中的append方法实现的(把两种类型相加)
字符串转换通过toString方法实现的(变为字符串)
true +"" --> "true"
123 + "" --> "123"
3.14 + ""--> "3.14"

String类的常用用法以及使用格式:

序号旁边的是使用格式

    //1.charAt(int index )返回指定索引处的字符值

      String str = "abcds";
      char sss = str.charAt(3);
      System.out.println(sss);

char ssss = str.charAt(6);这个索引越界
System.out.println(ssss);
     //相当于字符串的索引,设置好字符串,用charAt对第四个字符定位输出,
     //其中定位数字3不能越界这里的字符串长度为6,因为是从0开始所以最大定位数字为5,

//2.codePoinAt(int index) //根据字符串的索引进行定位并转换成阿斯克码表上其对应的序号
     String str = "aBbcds"
int codePointAt = str.codePointAt(1);
System.out.println(codePointAt);// B -->66 b-->98(根据阿斯克码表)


  //3.compareTo(String str)
int compareTo = str2.compareTo(str);
//this.charAt(k)-anotherString.charAt(k)
//this.length()-anotherString.length()
System.out.println(compareTo);
//4.compareToIgnoreCase(String str) 忽视大小写比较字符串
int compareToIgnoreCase = str2.compareToIgnoreCase(str);
//5.concat(String str)
String concat = str.concat(str2);
System.out.println(concat);// Abc123afg123
//6.Contains(CharSequence s) [重要]
boolean contains = str2.contains("f23");// f23是一个整体不可分割
System.out.println(contains);//true false
//7.endsWith(String suffix ) suffix 后缀 prefix 前线
boolean endsWith = str2.endsWith("23");
System.out.println(endsWith);
//8 starsWith(String prefix) [重要] 是否以某个字符串为结尾
boolean StartsWith = str2.startsWith("afg");
System.out.println(StartsWith);
//9. 相等判断equals(Object o) 重要 相等判断
boolean equals = str.equals(str2);
System.out.println(equals);
//10.getBytes() byte[] "afg123"
byte[] bytes = str2.getBytes();
for (int i = 0; i < bytes.length; i++) {
System.out.print(bytes[i] + " ");
}
// UTF-8 GBK ISO-8859-1 Unicode //src 来源 dst 目的地
char[] dst = new char[10];// 10个元素 (没有东西)
//11.getChars(int srcBegin,int srcEnd,char[] dst,int dstBegin)
//"afg123"
str2.getChars(2, 5, dst,4);//第五个位置
for (int i = 0; i < dst.length; i++) {
System.out.println(dst[i] + " ");
}
//str2 = "afg123"
//12. int indexOf(String str) 获取字符串第一次出现该字符串对应的索引位置 【重要】
int indexOf = str2.indexOf("12");//
System.out.println(indexOf);// 3
//13. int length()获取字符串的长度值 【重要】
int length = str2.length();
System.out.println(length);
//14.replace(CharSequence target, CharSequence replacement)
String replace = str2.replace("a", "e");// 把旧的字符串替换成新的字符串
System.out.println(replace);//ebc123ebc456
//15. split(String regex)根据指定的字符分割成字符串数组【重要】
//regex - 定界正则表达式
String str4 = "张三-李四-王五-赵六-abc";
String[] split = str4.split("-");
//相当于split = {"张三","李四","王五","赵六","abc"}
for (int i = 0; i < split.length; i++) {
System.out.print(split[i] + " ");
}
System.out.println();
String str5 = "abc.bcd.fff.123";
String[] split2 = str5.split("\\.");// 用.分割的话需要用需要用双反斜杠
// \---反斜杠 /---正斜杠 在字符串中"\"代表转义
for (int i = 0; i < split2.length; i++) {
System.out.print(split2[i] + " ");// abc bcd fff 123
} System.out.println();
String str6 = "123456789abc";
String[] split3 = str6.split("");//空字符串做分隔符
for (int i = 0; i < split3.length; i++) {
System.out.print(split3[i] + " ");//1,2,3,4,5,6,7,8,9,a,b,c
} //16.substring(int beginIndex,int endIndex) [a,b) 截取字符串 生成一个新的字符串
// 获取str6字符串中6789值
String substring = str6.substring(5, 9);
System.out.println(substring); //17. toLowerCase()小写 toUpperCase()大写
//18.String trim(() 去掉该字符串前后两端的空格
String str7 = " abc 123 ";
System.out.println("--"+str7+"--");
String trim = str7.trim();
System.out.println("--"+ trim + "--");
//19. static valueOf(Object o) 把非字符串类型转换成字符串类型,内容值不变
String valueOf = String.valueOf(abc);
System.out.println(valueOf);//123

------------恢复内容结束------------

------------恢复内容开始------------

java中的所有的字符串文字(例如"abc","123")都可以看做是实现了此类的实例对象

eg:

    String str = new String();
str = "123";
str = "abc";

String类的特点:

     1.字符串字面值常量,不变的
2.实现共享
3.内部封装了很多对于字符和字符串操作的API方法
4.Java 语言提供对字符串串联符号("+")以及将其他对象转换为字符串的特殊支持。
5.凡是能够用"+"连接字符串的结果值类型都会转变成字符串类型
通过StringBuilder中的append方法实现的(把两种类型相加)
字符串转换通过toString方法实现的(变为字符串)
true +"" --> "true"
123 + "" --> "123"
3.14 + ""--> "3.14"

String类的常用用法以及使用格式:

序号旁边的是使用格式

    //1.charAt(int index )返回指定索引处的字符值

      String str = "abcds";
      char sss = str.charAt(3);
      System.out.println(sss);

char ssss = str.charAt(6);这个索引越界
System.out.println(ssss);
     //相当于字符串的索引,设置好字符串,用charAt对第四个字符定位输出,
     //其中定位数字3不能越界这里的字符串长度为6,因为是从0开始所以最大定位数字为5,

//2.codePoinAt(int index) //根据字符串的索引进行定位并转换成阿斯克码表上其对应的序号
     String str = "aBbcds"
int codePointAt = str.codePointAt(1);
System.out.println(codePointAt);// B -->66 b-->98(根据阿斯克码表)


  //3.compareTo(String str)
int compareTo = str2.compareTo(str);
//this.charAt(k)-anotherString.charAt(k)
//this.length()-anotherString.length()
System.out.println(compareTo);
//4.compareToIgnoreCase(String str) 忽视大小写比较字符串
int compareToIgnoreCase = str2.compareToIgnoreCase(str);
//5.concat(String str)
String concat = str.concat(str2);
System.out.println(concat);// Abc123afg123
//6.Contains(CharSequence s) [重要]
boolean contains = str2.contains("f23");// f23是一个整体不可分割
System.out.println(contains);//true false
//7.endsWith(String suffix ) suffix 后缀 prefix 前线
boolean endsWith = str2.endsWith("23");
System.out.println(endsWith);
//8 starsWith(String prefix) [重要] 是否以某个字符串为结尾
boolean StartsWith = str2.startsWith("afg");
System.out.println(StartsWith);
//9. 相等判断equals(Object o) 重要 相等判断
boolean equals = str.equals(str2);
System.out.println(equals);
//10.getBytes() byte[] "afg123"
byte[] bytes = str2.getBytes();
for (int i = 0; i < bytes.length; i++) {
System.out.print(bytes[i] + " ");
}
// UTF-8 GBK ISO-8859-1 Unicode //src 来源 dst 目的地
char[] dst = new char[10];// 10个元素 (没有东西)
//11.getChars(int srcBegin,int srcEnd,char[] dst,int dstBegin)
//"afg123"
str2.getChars(2, 5, dst,4);//第五个位置
for (int i = 0; i < dst.length; i++) {
System.out.println(dst[i] + " ");
}
//str2 = "afg123"
//12. int indexOf(String str) 获取字符串第一次出现该字符串对应的索引位置 【重要】
int indexOf = str2.indexOf("12");//
System.out.println(indexOf);// 3
//13. int length()获取字符串的长度值 【重要】
int length = str2.length();
System.out.println(length);
//14.replace(CharSequence target, CharSequence replacement)
String replace = str2.replace("a", "e");// 把旧的字符串替换成新的字符串
System.out.println(replace);//ebc123ebc456
//15. split(String regex)根据指定的字符分割成字符串数组【重要】
//regex - 定界正则表达式
String str4 = "张三-李四-王五-赵六-abc";
String[] split = str4.split("-");
//相当于split = {"张三","李四","王五","赵六","abc"}
for (int i = 0; i < split.length; i++) {
System.out.print(split[i] + " ");
}
System.out.println();
String str5 = "abc.bcd.fff.123";
String[] split2 = str5.split("\\.");// 用.分割的话需要用需要用双反斜杠
// \---反斜杠 /---正斜杠 在字符串中"\"代表转义
for (int i = 0; i < split2.length; i++) {
System.out.print(split2[i] + " ");// abc bcd fff 123
} System.out.println();
String str6 = "123456789abc";
String[] split3 = str6.split("");//空字符串做分隔符
for (int i = 0; i < split3.length; i++) {
System.out.print(split3[i] + " ");//1,2,3,4,5,6,7,8,9,a,b,c
} //16.substring(int beginIndex,int endIndex) [a,b) 截取字符串 生成一个新的字符串
// 获取str6字符串中6789值
String substring = str6.substring(5, 9);
System.out.println(substring); //17. toLowerCase()小写 toUpperCase()大写
//18.String trim(() 去掉该字符串前后两端的空格
String str7 = " abc 123 ";
System.out.println("--"+str7+"--");
String trim = str7.trim();
System.out.println("--"+ trim + "--");
//19. static valueOf(Object o) 把非字符串类型转换成字符串类型,内容值不变
String valueOf = String.valueOf(abc);
System.out.println(valueOf);//123

------------恢复内容开始------------

java中的所有的字符串文字(例如"abc","123")都可以看做是实现了此类的实例对象

eg:

    String str = new String();
str = "123";
str = "abc";

String类的特点:

     1.字符串字面值常量,不变的
2.实现共享
3.内部封装了很多对于字符和字符串操作的API方法
4.Java 语言提供对字符串串联符号("+")以及将其他对象转换为字符串的特殊支持。
5.凡是能够用"+"连接字符串的结果值类型都会转变成字符串类型
通过StringBuilder中的append方法实现的(把两种类型相加)
字符串转换通过toString方法实现的(变为字符串)
true +"" --> "true"
123 + "" --> "123"
3.14 + ""--> "3.14"

String类的常用用法以及使用格式:

序号旁边的是使用格式

    //1.charAt(int index )返回指定索引处的字符值

      String str = "abcds";
      char sss = str.charAt(3);
      System.out.println(sss);

char ssss = str.charAt(6);这个索引越界
System.out.println(ssss);
     //相当于字符串的索引,设置好字符串,用charAt对第四个字符定位输出,
     //其中定位数字3不能越界这里的字符串长度为6,因为是从0开始所以最大定位数字为5,

//2.codePoinAt(int index) //根据字符串的索引进行定位并转换成阿斯克码表上其对应的序号
     String str = "aBbcds"
int codePointAt = str.codePointAt(1);
System.out.println(codePointAt);// B -->66 b-->98(根据阿斯克码表)


  //3.compareTo(String str)
int compareTo = str2.compareTo(str);
//this.charAt(k)-anotherString.charAt(k)
//this.length()-anotherString.length()
System.out.println(compareTo);
//4.compareToIgnoreCase(String str) 忽视大小写比较字符串
int compareToIgnoreCase = str2.compareToIgnoreCase(str);
//5.concat(String str)
String concat = str.concat(str2);
System.out.println(concat);// Abc123afg123
//6.Contains(CharSequence s) [重要]
boolean contains = str2.contains("f23");// f23是一个整体不可分割
System.out.println(contains);//true false
//7.endsWith(String suffix ) suffix 后缀 prefix 前线
boolean endsWith = str2.endsWith("23");
System.out.println(endsWith);
//8 starsWith(String prefix) [重要] 是否以某个字符串为结尾
boolean StartsWith = str2.startsWith("afg");
System.out.println(StartsWith);
//9. 相等判断equals(Object o) 重要 相等判断
boolean equals = str.equals(str2);
System.out.println(equals);
//10.getBytes() byte[] "afg123"
byte[] bytes = str2.getBytes();
for (int i = 0; i < bytes.length; i++) {
System.out.print(bytes[i] + " ");
}
// UTF-8 GBK ISO-8859-1 Unicode //src 来源 dst 目的地
char[] dst = new char[10];// 10个元素 (没有东西)
//11.getChars(int srcBegin,int srcEnd,char[] dst,int dstBegin)
//"afg123"
str2.getChars(2, 5, dst,4);//第五个位置
for (int i = 0; i < dst.length; i++) {
System.out.println(dst[i] + " ");
}
//str2 = "afg123"
//12. int indexOf(String str) 获取字符串第一次出现该字符串对应的索引位置 【重要】
int indexOf = str2.indexOf("12");//
System.out.println(indexOf);// 3
//13. int length()获取字符串的长度值 【重要】
int length = str2.length();
System.out.println(length);
//14.replace(CharSequence target, CharSequence replacement)
String replace = str2.replace("a", "e");// 把旧的字符串替换成新的字符串
System.out.println(replace);//ebc123ebc456
//15. split(String regex)根据指定的字符分割成字符串数组【重要】
//regex - 定界正则表达式
String str4 = "张三-李四-王五-赵六-abc";
String[] split = str4.split("-");
//相当于split = {"张三","李四","王五","赵六","abc"}
for (int i = 0; i < split.length; i++) {
System.out.print(split[i] + " ");
}
System.out.println();
String str5 = "abc.bcd.fff.123";
String[] split2 = str5.split("\\.");// 用.分割的话需要用需要用双反斜杠
// \---反斜杠 /---正斜杠 在字符串中"\"代表转义
for (int i = 0; i < split2.length; i++) {
System.out.print(split2[i] + " ");// abc bcd fff 123
} System.out.println();
String str6 = "123456789abc";
String[] split3 = str6.split("");//空字符串做分隔符
for (int i = 0; i < split3.length; i++) {
System.out.print(split3[i] + " ");//1,2,3,4,5,6,7,8,9,a,b,c
} //16.substring(int beginIndex,int endIndex) [a,b) 截取字符串 生成一个新的字符串
// 获取str6字符串中6789值
String substring = str6.substring(5, 9);
System.out.println(substring); //17. toLowerCase()小写 toUpperCase()大写
//18.String trim(() 去掉该字符串前后两端的空格
String str7 = " abc 123 ";
System.out.println("--"+str7+"--");
String trim = str7.trim();
System.out.println("--"+ trim + "--");
//19. static valueOf(Object o) 把非字符串类型转换成字符串类型,内容值不变
String valueOf = String.valueOf(abc);
System.out.println(valueOf);//123

------------恢复内容结束------------

------------恢复内容结束------------

------------恢复内容结束------------

16 String类的更多相关文章

  1. C++语言基础(16)-string类

    使用 string 类需要包含头文件<string>,下面的例子介绍了几种定义 string 变量(对象)的方法: #include <iostream> #include & ...

  2. 源码学习-String类

    最近在扫描CodeDex时报了一个不能使用String.intern()的字符串来做锁对象的告警,对这个问题有疑问查了些资料,顺便学习一下String类的源码. 1.类定义 String 被final ...

  3. 《C++ Primer Plus》16.1 string类 学习笔记

    16.1.1 构造字符串程序清单16.1使用了string的7个构造函数.程序清单16.1 str1.cpp---------------------------------------------- ...

  4. C++ primer plus读书笔记——第16章 string类和标准模板库

    第16章 string类和标准模板库 1. string容易被忽略的构造函数: string(size_type n, char c)长度为n,每个字母都为c string(const string ...

  5. 《C++ Primer Plus》第16章 string类和标准模板库 学习笔记

    C++提供了一组功能强大的库,这些库提供了很多常见编程问题的解决方案以及简化其他问题的工具string类为将字符串作为对象来处理提供了一种方便的方法.string类提供了自动内存管理动能以及众多处理字 ...

  6. String类和StringBuffer类的区别

    首先,String和StringBuffer主要有2个区别: (1)String类对象为不可变对象,一旦你修改了String对象的值,隐性重新创建了一个新的对象,释放原String对象,StringB ...

  7. String 类相关知识

    1.常用方法 1)判断字符串是否为空 public boolean isEmpty()2)获取字符串长度 public int length()3)截取子子串 public String substr ...

  8. Java String类的常用方法

    String(byte[ ] bytes):通过byte数组构造字符串对象. String(char[ ] value):通过char数组构造字符串对象. String(Sting original) ...

  9. [C++][语言语法]标准C++中的string类的用法总结

    转自:http://www.cnblogs.com/xFreedom/archive/2011/05/16/2048037.html 要想使用标准C++中string类,必须要包含 #include ...

随机推荐

  1. python实现随机复制若干个文件到新目录

    python实现随机复制若干个文件到新目录 1说明 1.1 目的 随机选择一个文件下的若干个文件,并将文件复制到新文件夹下 1.2 要求 需要将random_select_and_copy_file. ...

  2. spring整合(Junit、web)

    1.整合Junit (1)整合前的测试类代码 public class Test { public static void main(String[] args) { ApplicationConte ...

  3. log4net 纯代码配置

    当需要输出的日志很多的时候,每次修改config都很麻烦,于是想可不可以动态生成. 网上找的案例都是获取单个appender/logger的,此处例子是任意logger,appender相同 log4 ...

  4. Python 3 入门,看这篇就够了(超全整理)

    史上最全Python资料汇总(长期更新).隔壁小孩都馋哭了 --- 点击领取 今天和大家分享的内容是Python入门干货,文章很长. 简介 Python 是一种高层次的结合了解释性.编译性.互动性和面 ...

  5. Hibernate4.3基础知识1

    一.Hibernate 开发环境搭建 4.3 1.导包    2.创建hibernate.cfg.xml配置文件   3.创建实体类   4.创建映射文件 实体类名.hbm.xml  配置文件 二.h ...

  6. Anaconda安装Pytorch(通过本地安装包)

    前提:你已经事先安装好了Anaconda 在线安装pytorch总是出现这样那样的问题,所以我选择先去清华镜像下载好与python版本对应的pytorch和torchvision文件,然后本地安装 清 ...

  7. P5035金坷垃题解(快速幂的讲解)

      首先经过读题,我们发现找到合格的金坷垃,怎么样的金坷垃才是合格的呢?(我们不难发现1肯定是合格的[题目已经给出了]) 然后我们开始手推一下之后合格的金坷垃: 2-1=1(合格) 3-1-1=1(不 ...

  8. TCHAR数据类型介绍

    转载:https://blog.csdn.net/mousebaby808/article/details/5259944 并不是所有的Windows操作系统都支持UNICODE编码的API(例如早期 ...

  9. C++中union的使用方法

    转载:https://blog.csdn.net/hou09tian/article/details/80816445 1 概述 1.1 定义 union即为联合,它是一种特殊的类.通过关键字unio ...

  10. 【题解】CF1368C Even Picture

    \(\color{purple}{Link}\) \(\text{Solution:}\) 这是一道构造题. 题目要求恰好有\(n\)个点的四周全都是灰色点,所以直接输正方形是不行了. 考虑\(k=1 ...