Monday 29 February 2016

Java Tutorial : Java String(String pool)


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

Click the below Image to Enlarge
Java Tutorial : Java String(String pool) 
StringTest.java
public class StringTest
{

    public static void main(String[] args)
    {
        String s1 = "Cat";
        String s2 = "Cat";
        String s3 = "Dog";
        String s4 = new String("Cat");

        System.out.println("s1 == s2 : " + (s1 == s2));
        System.out.println("s1 == s3 : " + (s1 == s3));
        System.out.println("s1 == s3 : " + (s1 == s4));
    }

}
Output
s1 == s2 : true
s1 == s3 : false
s1 == s3 : false
Click the below link to download the code:
https://sites.google.com/site/javaee4321/java/StringDemo_StringPool_App.zip?attredirects=0&d=1

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

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