char
StringBuffer
StringBuilder
示例:
new StringBuilder('(').append("1").append(')');
在应用快速修复后:
new StringBuilder("(").append("1").append(')');