String
建议通过快速修复来简化串联。
示例:
void foo(int x, int y) { String s = "" + x + " ; " + y; }
在应用快速修复后:
void foo(int x, int y) { String s = x + " ; " + y; }