String 字符串常量;
StringBuffer 线程安全
StringBuiler 非线程安全
通常情况下性能:StringBuiler > StringBuffer > String
特殊情况下性能String最优:String = "A"+"B"+"C";