一、实例化String对象
1.String name="xiaott"
2.String name=new String("xiaott")
区别:
1.直接赋值(好):只会开辟一块堆内存空间,并且会自动保存在对象池之中以供下次重复使用。
2.构造方法:会开辟两块堆内存空间,其中有一块空间将成为垃圾,并且不会自动入池,但是用户可以使用intern()方法手工入池。
二、String对象的内容比较
/*1.用“==”进行内容比较*/
String str1=“hello”;
String str2=new String("Hello");
String str3=str2;
System.out.println("str1==str2-->"+(str1==str2));//false
System.out.println("str2==str3-->"+(str2==str3));//false
System.out.println("str1==str3-->"+(str1==str3));//true
/*2.用public boolean equals(String str)比较内容
*区分大小写*/
String str1=“hello”;
String str2=new String("Hello");
String str3=str2;
System.out.println("str1==str2-->"+(str1.equals(str2)));//true
System.out.println("str2==str3-->"+(str2.equals(str3)));//true
System.out.println("str1==str3-->"+(str1.equals(str3)));//true
三、字符串内容不可改变
String str="Hello";
str=str+"world";
Systrm.out.println("str="+str);
//输出:str=Hello world
改变的不是内容,是堆内存地址。
四、String类中常用方法
1.字符串和字符数组的转换
toCharArray():字符串->字符数组
String类的构造方法:字符数组->字符串
String str1="Hello";
char c[]=str1.toCharArray();//字符串->字符数组
for(int i=0;i<c.length;i++){
System.out.println(c[i]+"、"); //输出:H、e、l、l、o
}
String str2=new String(c); //将全部数组变成字符串
String str3=new String(c,0,3); //将部分数组变成字符串
System.out.println(str2); //输出Hello
System.out.println(str3); //Hel
2.从字符串中去除指定位置的字符
charAt()
String str1="Hello";
System.out.println(str1.charAt(1); //e(下标为1)
3.字符串和byte数组的转换
getBytes():String->byte数组
String类构造方法:byte数组->String
String str1="Hello";
byte b[]=str1.getBytes();
System.out.println(new String(b); //Hello
System.out.println(new String(b,1,3); //ell
4.取得一个字符串的长度
length()
String str1="hello xiaott";
System.out.println(str1.length()); //12,算空格
区分length和length()
length:数组,是个操作 ; ["abc","def"].得2
length():字符串,是个方法 ; "abc",得3
5.查找一个指定的字符串是否存在
indexOf()
String str1="abcdefgcgh";
System.out.println(str1.indexOf("c")); //2
System.out.println(str1.indexOf("c",3)); //7,从第四个开始查找
System.out.println(str1.indexOf("x")); //-1,没找到
判断子字符串是否存在
contains()
String str="wwwaaa";
if(str.contains("aaa"){
System.out.println(“可以查到数据”);
}
6.去掉左右空格
trim()
String str1=" hello ";
System.out.println(str1.trim()); //hello
7.字符串截取
subString() :从指定位置截取到字符串尾/截取指定范围
String str1="hello world";
System.out.println(str1.subSting(6); //world
System.out.println(str1.subString(0,5); //hello
8.按照指定的字符串拆分字符串
split()进行字符串的拆分操作,拆分的数据以字符串数组的形式返回
String str1="hello world";
String s[]=str1.split(" ");
for(int i=0;i<s.length;i++){
System.out.println(s[i]);
}
//hello
//world
9.字符串的大小写转换
toUpperCase()和toLowerCase()
System.out.println("hello world".toUpperCase()); //HELLO WORLD
System.out.println("HELLO WORLD".toLowerCase()); //hello world
10.判断是否以指定字符串开头或结尾
startsWith() endWith()
String str1="**Hello";
String str2="Hello**";
if(str1.startsWith("**")){
System.out.println("true"); //true
}
if(str2.endWith("**")){
System.out.println("true"); //true
}
11.不区分大小写进行字符串比较
equals区分大小写
equalsIsIgnoreCase()
String str1="HELLO";
String str2="hello";
System.out,println(str1.equalIsIgnoreCase(str2)); //true
12.将一个指定字符串,替换成其他字符串
replaceAll()
String str="Hello";
String newStr=str.replaceAll("l","x");
Systtm.outprintln(newStr); //hexxo
五、StringBuffer类
如果一个字符串要经常被改变,必须使用StringBuffer。
String类用“+”连接字符串,StringBuffer用append()方法连接。
常用方法:
1.字符串连接操作(append)
StringBuffer buf=new StringBuffer();
buf.append("Hello "); //向StringBuffer中添加内容
buf.append("world").append("!!"); //可以连续调用append
buf.append("\n"); //添加一个转义字符表示换行
buf.append(1).append("\n");
buf.append('C').append("\n");
buf.append(true);
System.out.println(buf);
/*Hello World!!
*1
*C
*
*true
*/
2.在任意位置处为StringBuffer添加内容(insert)
StringBuffer buf=new StringBuffer();
buf.append("World");
buf.insert(0,"Hello");
System.out.println(buf); //Hello World
buf.insert(buf.length(),"AAA");
System.out.println(buf); //Hello WorldAAA
3.字符串反转操作(reverse)
StringBuffer buf=new StringBuffer();
buf.append("Hello").append("World");
String str=buf.reverse().toString();
System.out.println(str); //dlroW olleH
4.替换指定范围内容(replace)
String中replaceAll StringBuffer中replace
StringBuffer buf=new StringBuffer();
buf.append("Hello").append("World");
buf.replace(6,11,"aaaaa");
System.out.println(buf); //HEllo aaaaa
5.字符串截取(subString)
6.删除指定范围字符串(delete)
StringBuffer buf=new StringBuffer();
buf.append("Hello").append("World");
String str=buf.delete(0,5).toString(); //删掉0.1.2.3.4
System.out.println(str); //World
7.查找指定内容是否存在(indexOf)