You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Java StringBuilder class is used to create mutable (modifiable) String. The Java StringBuilder class is same as StringBuffer class except that it is non-synchronized. It is available since JDK 1.5.
15
+
16
+
/* Important Constructors of StringBuilder class
17
+
Constructor Description
18
+
StringBuilder() It creates an empty String Builder with the initial capacity of 16.
19
+
StringBuilder(String str) It creates a String Builder with the specified string.
20
+
StringBuilder(int length) It creates an empty String Builder with the specified capacity as length.*/
0 commit comments