string
-
String, Char, StringBuilder, and StringBufferStaticPL/JAVA 2019. 8. 18. 20:16
1. Overview Finding Different between String and Char. Check each role on JAVA. 3. Description 3.1 String It's a Class having a class member of final char[] in it. It has String Pool in JVM for caching literal reference of instance. but generated separate reference on the pool if instances are created using new keyword each time. It's immutable like the final instance. So before JDK 1.5, if some..