Join
Blogs
Questions
Videos
Tags
Members
Search
 
 
Create your own blog, earn points and get popular!

Java String Example

  1. /*
  2. Java String example
  3. This Java String example describes how Java String object is created and used.
  4. */
  5.  
  6. public class JavaStringExample{
  7.    
  8.     public static void main(String args[]){
  9.        
  10.         /*
  11.         String in java represents the character sequence.
  12.         */
  13.        
  14.         //creates new empty string        
  15.         String str1 = new String("");
  16.        
  17.         //creates new string object whose content would be Hello World        
  18.         String str2 = new String("Hello world");
  19.        
  20.         //creates new string object whose content would be Hello World        
  21.         String str3 = "Hello World";
  22.        
  23.         /*
  24.         IMPORTANT : Difference between above given two approaches is,
  25.         String object created using new operator will always return new String object.
  26.        
  27.         While the other may return the reference of already created string
  28.         Object with same content, if any.
  29.         */
  30.        
  31.         System.out.println(str1.length());
  32.        
  33.     }
  34.  
  35. }
  36.  
  37. /*
  38. OUTPUT of the above given Java String Example would be:
  39. 0
  40. */
No votes yet
Share this

Post new comment