-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDemo4.java
More file actions
18 lines (15 loc) · 464 Bytes
/
Demo4.java
File metadata and controls
18 lines (15 loc) · 464 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package StringDemos;
public class Demo4 {
public static void main(String[] args) {
StringBuffer sb = new StringBuffer(4444);
System.out.println(sb.length());
System.out.println(sb.capacity());
sb.append("gfgd75567567567567657567567567567657567675fgdfgdfgdfgdfgdfgdg");
System.out.println(sb.length());
System.out.println(sb.capacity());
/*
* sb.append("TT"); System.out.println(sb.length());
* System.out.println(sb.capacity());
*/
}
}