🏠个人主页: 黑洞晓威
🧑个人简介:大家好,我是晓威,一名普普通通的大二在校生,希望在CSDN中与大家一起成长呀。🎁如果你也在正在学习Java,欢迎各位大佬来到我的博客查漏补缺呀,如果有哪里写的不对的地方也欢迎诸佬指正啊。
常用类String
String的特点
- 声明为final,不可被继承
- 实现了Serializable接口,字符串支持序列化
- 实现了Comparable接口,表示String可比较大小
- String内部定义了final char[] value用于存储字符串数据
- String代表不可变字符序列,简称不可变性
体现:
- 当对字符串重新赋值时,需要重写指定内存区域赋值,不能用原有的value进行赋值
- 当对现有的字符串进行连接操作时,也需要重新指定内存区域赋值,不能在原有的基础上赋值
- 调用String的replace()方法修改字符或字符串时,也需要重新指定内存区域
- 通过字面量的方式(区别于new)给一个字符串赋值,此时的字符串值声明在字符串常量池中。
- 字符串的常量池不会存储相同的字符串。
public class text02 {
public static void main(String[] args) {
String s1="abc";
String s2="abc";
System.out.println(s1==s2);//地址相同
System.out.println(s1);
System.out.println(s2);
s1="hello";
System.out.println(s1);
System.out.println(s2);
System.out.println(s1=s2);//地址不同
}
}
练习题:
- 模拟trim()方法
public class text02 {
public static void main(String[] args) {
String s=" hello ";
way(s);
}
public static void way(String str) {
int i;
for (i = 0; i < str.length(); i++) {
if (str.charAt(i) != ' ') {
break;
}
}
int j;
for (j = str.length()-1; j >= 0; j--) {
if (str.charAt(j) != ' ') {
break;
}
}
String s1=str.substring(i, j+1);
System.out.println(s1);
}
}
- 将字符的指定部分进行反转,如”hello“反转为”hlleo“
public class text02 {
public static void main(String[] args) {
String s = "hello";
String s1=way(s,1,3);
System.out.println(s1);
}
//s为开始反转的下标,e为结束反转的下标
public static String way(String str,int s,int e) {
char[] chars = str.toCharArray();{
for (int i = 0; i <(e-s)/2 ; i++) {
char temp=chars[s];
chars[s]=chars[e];
chars[e]=temp;
e--;
s++;
}
}
String s1 = new String(chars);
return s1;
}
}
- 获取两个字符串中最大相同字串
public class text02 {
public static void main(String[] args) {
String s1="abcdhello";
String s2="hsinsrkhello";
int result =way(s1,s2);
System.out.println(result);
}
public static int way(String str1,String str2) {
int max=1;
int imax = 0;
int jmax = 0;
for (int i = 0; i < str1.length(); i++) {
for (int j = i;j<str1.length();j++){
String s = str1.substring(i,j+1);
if(str2.contains(s)){
int nmax=j-i+1;
if(nmax>max){
max=nmax;
imax=i;
jmax=j;
}
}
}
}
String smax=str1.substring(imax,jmax+1);
System.out.println(smax);
return max;
}
}
- 对字符串字符进行自然顺序排序
public class text02 {
public static void main(String[] args) {
String s1="hsinndlslaonvbc";
String s2 = way(s1);
System.out.println(s2);
}
public static String way(String str) {
char[] chars = str.toCharArray();
for (int i = 0; i < chars.length; i++) {
for(int j = i+1;j<chars.length;j++){
if (chars[i]>chars[j]) {
char temp=chars[i];
chars[i]=chars[j];
chars[j]=temp;
}
}
}
String str2=new String(chars);
return str2;
}
}
🎉文章到这里就结束了,感谢诸佬的阅读。🎉💕欢迎诸佬对文章加以指正,也望诸佬不吝点赞、评论、收藏加关注呀😘