Wednesday 13 April 2016

Java Tutorial : Java StringBuffer [charAt(int index) method]


Click here to watch in Youtube :
https://www.youtube.com/watch?v=cns5jj7aa_4&list=UUhwKlOVR041tngjerWxVccw&nohtml5=False

Click the below Image to Enlarge
Java Tutorial : Java StringBuffer [charAt(int index) method] 
CharAtDemo.java
/*
 * public char charAt(int index)
 * 
 * Parameters:
 * ----------                           
 * index - the index of the desired char value.
 * 
 * Returns:
 * -------- 
 * the char value at the specified index.
 * 
 * Throws:
 * ------
 * IndexOutOfBoundsException - if index is negative 
 * or greater than or equal to length(). 
 */

public class CharAtDemo
{

    public static void main(String[] args)
    {

        StringBuffer sb = new StringBuffer("Welcome");

        char ch = sb.charAt(3);
        System.out.println("charAt(3) = " + ch);

        ch = sb.charAt(5);
        System.out.println("charAt(5) = " + ch);
    }
}
Output
charAt(3) = c
charAt(5) = m
Click the below link to download the code:
https://sites.google.com/site/javaee4321/java/StringBufferDemo_charAt_App.zip?attredirects=0&d=1

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

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/88e1f032ca4ea5ed8e91e8ffa23db6cb018a79ff/BasicJava/StringBufferDemo_charAt_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