String与StringBuffer
String
package hai;
public class string {
public static void main(String[]args) {
String s1 = "abc";
String s3 = "abc";
System.out.println(s1==s3);
String s2 = new String("abc");
String s4 = new String("abc");
System.out.println(s2==s4);
System.out.println(s2.equals(s4));
}
}
/*
true
false
true*/
String对象是不可变的,在String类中每一个看起来会修改String对象内容的方法,实质都是创建了一个全新的String对象。
尽管是传引用,但通过形参引用并未改变实参指向的字符串内容
**package hai;
public class string {
String s;
string(String ss){
s=ss;
}
public void change(String s) {
s=s+"a";
System.out.println(s);
}
public void fun() {
change(s);
System.out.println(s);
}
public static void main(String[]args) {
string s=new string("hhh");
s.fun();
}
}
/*
hhha
hhh*/
StringBuffer
StringBuffer对象的值是可变的,对字符串的增加、插入、修改、删除等操作比String高效(不需多次创建新的对象)
package hai;
public class stringbuffer {
public static void main(String[]args) {
StringBuffer a=new StringBuffer("hello");
StringBuffer b=new StringBuffer("world");
operate(a,b);
System.out.println(a);//a已经改变
System.out.println(b);//b未变
}
static void operate(StringBuffer x,StringBuffer y) {
x.append(y);//x引用对象改变
System.out.println(x);
y=x;//y指向x所引用的对象
System.out.println(y);
}
}
/*输出结果:
helloworld
helloworld
helloworld
world*/
String、StringBuffer、StringBuilder 比较:
相同点:
1、内部实现基于字符数组,封装了对字符串处理的各种操作
2、可自动检测数组越界等运行时异常
不同点:
1、String内部实现基于常量字符数组,内容不可变;
StringBuffer、StringBuilder基于普通字符数组,数组大小可根据
字符串的实际长度自动扩容,内容可变
2、性能方面,对于字符串的处理,相对来说
StringBuilder >StringBuffer>String
3、StringBuffer线程安全;StringBuilder非线程安全
所以不建议在for循环中使用“+”进行字符串拼接,浪费内存空间
字符串的编码和解码
对于同一个汉字,GB2312和Unicode对应的代码并不一样,需要一个转化过程
**编码:**将Unicode字符集转换为本地字符集(GB2312或GBK)的过程
package hai;
import java.io.*;
public class bianma {
public static void printByteArray(String msg,byte[] t){
System.out.println(msg+"****************");
for(int i=0;i<t.length;i++){
System.out.println(Integer.toHexString(t[i])); }
}
public static void printCharArray(String msg,char[] c){
System.out.println(msg+"****************");
for(int i=0;i<c.length;i++){
System.out.println(Integer.toHexString(c[i])); }
}
public static void main(String[] args){
try{
String str = "中文";
System.out.println(str);
printCharArray("unicode:",str.toCharArray()); //unicode字符集中对"中文"二字的对应代码
byte[] b =str.getBytes("GB2312"); //编码:转为本地字符集GBK2312对应的代码
printByteArray("GB2312",b);
byte[] m =str.getBytes("ISO8859-1"); //转为ISO8859-1对应的代码
printByteArray("ISO8859-1",m); // ISO8859-1是英文字符集,没有对应的汉字代码,所以转化错误
}
catch(UnsupportedEncodingException e){
System.out.println("没有相应的字符集!"); } }
}
中文
unicode:****************
4e2d
6587
GB2312****************
ffffffd6
ffffffd0
ffffffce
ffffffc4
ISO8859-1****************
3f
3f
**解码:**将本地字符集转换为Unicode字符集的过程
public static void main(String[] args){
byte[] b = new byte[6];
int t=0,pos=0;
String s;
try{
while(t!='\n'){
t=System.in.read();
b[pos]=(byte)t;
pos++;
}
printByteArray("本地码:",b);
s = new String(b,“GBK”); //解码
System.out.println(s);
printCharArray("unicode码:",s.toCharArray());
}
catch (Exception e){
System.out.println(e.getMessage());
}
}
中文
本地码:****************
ffffffd6
ffffffd0
ffffffce
ffffffc4
d
a
中文
unicode码:****************
4e2d
6587
d
a