String与StringBuffer
String类对象中的内容一旦被初始化就不能再改变,对于已存在的String对象的修改都是重新创建一个新的对象,然后把新的值保存进去。String类是final类,其常用方法有:
StringBuffer类是可变的,它只能通过构造方法创建
StringBuffer sb = new StringBuffer();
在字符串连接操作中StringBuffer比String的效率要高
str = "hello" + "word";
sb.append("hello").append("word");
字符串常量是一种特殊的匿名String对象。
基本数据类型的对象包装类
基本数据类型 包装类
boolean Boolean
byte Byte
char Char
short Short
int Integer
long Long
float Float
double Double