Tuesday 5 April 2016

Java Tutorial : Java StringBuffer [capacity() method]


Click here to watch in Youtube :
https://www.youtube.com/watch?v=L4Dmj5n-4zU&list=UUhwKlOVR041tngjerWxVccw

Click the below Image to Enlarge
Java Tutorial : Java StringBuffer [capacity() method] 
StringBufferDemo.java
/*
 * public int capacity()
 *  
 * Returns: 
 * -------- 
 * the current capacity
 */

public class StringBufferDemo
{

    public static void main(String[] args)
    {
        StringBuffer sb = new StringBuffer();
        // default 16
        System.out.println(sb.capacity());
        sb.append("Hello");
        // now 16
        System.out.println(sb.capacity());
        sb.append("Hello peter welcome to India");

        // now (16*2)+2=34 i.e (oldcapacity*2)+2
        System.out.println(sb.capacity());
    }
}
Output
16
16
34
Click the below link to download the code:
https://sites.google.com/site/javaee4321/java/StringBufferDemo_capacity_App.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/StringBufferDemo_capacity_App

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/ce5d2c4e342b840332c46e78701aea1fb5b7aa66/BasicJava/StringBufferDemo_capacity_App/?at=master
See also:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • No comments:

    Post a Comment