报告与一个字符组成的字符串文字的连接。
这些文字可以替换为等效的字符文字,从而提升一定的性能。
示例:
String hello = hell + "o";
在应用快速修复后:
String hello = hell + 'o';