Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,971 questions

51,913 answers

573 users

How to get the StringBuilder capacity in Java

5 Answers

0 votes
public class MyClass {
    public static void main(String args[]) {
        StringBuilder sb = new StringBuilder("Java");  

        System.out.println(sb.capacity());
    }
}



/*
run:

20

*/

 



answered Jun 16, 2019 by avibootz
0 votes
public class MyClass {
    public static void main(String args[]) {
        StringBuilder sb = new StringBuilder();  

        System.out.println(sb.capacity());
    }
}



/*
run:

16

*/

 



answered Jun 16, 2019 by avibootz
0 votes
public class MyClass {
    public static void main(String args[]) {
        StringBuilder sb = new StringBuilder();  
        System.out.println(sb.capacity());
        
        sb.append("Java");  
        System.out.println(sb.capacity());
    }
}



/*
run:

16
16

*/

 



answered Jun 16, 2019 by avibootz
0 votes
public class MyClass {
    public static void main(String args[]) {
        StringBuilder sb = new StringBuilder();  
        System.out.println(sb.capacity());
        
        sb.append("12345678");  
        System.out.println(sb.capacity());
        
        sb.append("abcdefgh");  
        System.out.println(sb.capacity());
    }
}



/*
run:

16
16
16

*/

 



answered Jun 16, 2019 by avibootz
0 votes
public class MyClass {
    public static void main(String args[]) {
        StringBuilder sb = new StringBuilder();  
        System.out.println(sb.capacity());
        
        sb.append("12345678");  
        System.out.println(sb.capacity());
        
        sb.append("abcdefgh");  
        System.out.println(sb.capacity());
        
        sb.append("W"); // (16 * 2) + 2
        System.out.println(sb.capacity());
    }
}



/*
run:

16
16
16
34

*/

 



answered Jun 16, 2019 by avibootz
edited Jun 16, 2019 by avibootz

Related questions

1 answer 156 views
1 answer 136 views
2 answers 241 views
1 answer 85 views
1 answer 88 views
1 answer 94 views
1 answer 107 views
...