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