Skip to content

Latest commit

 

History

History

item63

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

문자열 연결은 느리니 주의하라.



요약

성능에 신경 써야 한다면 많은 문자열을 연결할때는 문자열 연결 연산자( )를 피하자. 대신 StringBuilder의 append 메서드를 사용하라. 문자 배열을 사용하거나, 문자열을 하나씩 처리하는 방법도 있다.