1.String ---> StringBuffer
* a:通过构造方法* b:通过append()方法
2.StringBuffer ---> String
* a:通过构造方法* b:通过toString()方法* c:通过subString(0,length);