이러한 리터럴을 동등한 문자 리터럴로 대체하여 성능을 개선할 수 있습니다.
예:
String hello = hell + "o";
빠른 수정을 적용한 후:
String hello = hell + 'o';