java.lang.StringBuilder When you call the no-argument constructor of the StringBuilder class and instantiate it, a char type array with a buffer with an initial value of 16 is generated. So the initial value is an empty string. I thought it was null for some reason. .. .. Of course, if you just declare a variable of type StringBuilder, it will be null.
Recommended Posts