Effective Java
Download
2,19 Mb.
Pdf ko'rish
bet
250/341
Sana
11.07.2022
Hajmi
2,19 Mb.
#776765
1
...
246
247
248
249
250
251
252
253
...
341
Bog'liq
Effective Java
Bu sahifa navigatsiya:
EnumSet.of(Style.BOLD, Style.ITALIC)
Item 63: Beware the performance of string concatenation
Using the string concatenation operator repeatedly to concatenate n strings requires time qua- dratic in n
// Inappropriate use of string concatenation - Performs poorly!
To achieve acceptable performance, use a StringBuilder in place of a String