Monday 28 March 2016

Java Tutorial : Java String [equals(Object anObject) method]


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

Click the below Image to Enlarge
Java Tutorial : Java String [equals(Object anObject) method] 
EqualsDemo.java
/*
 * public boolean equals(Object anObject)
 * ------------------------------------- 
 * Compares this string to the specified object. The
 * result is true if and only if the argument is not
 * null and is a String object that represents the
 * same sequence of characters as this object.
 * 
 * Overrides: 
 * --------- 
 * equals in class Object
 * 
 * Parameters: 
 * ---------- 
 * anObject - The object to compare this String
 * against
 * 
 * Returns: 
 * ------- 
 * true if the given object represents a String
 * equivalent to this string, false otherwise
 */

public class EqualsDemo
{
    public static void main(String[] args)
    {

        boolean result = "welcome".equals("welcome");
        System.out.println("\"welcome\".equals(\"welcome\") = "
                + result);

        result = "welcome".equals("WELCOME");
        System.out.println("\"welcome\".equals(\"WELCOME\") = "
                + result);

        result = "welcome".equals("hello");
        System.out.println("\"welcome\".equals(\"hello\")   = "
                + result);
    }
}
Output
"welcome".equals("welcome") = true
"welcome".equals("WELCOME") = false
"welcome".equals("hello")   = false
Click the below link to download the code:
https://sites.google.com/site/javaee4321/java/StringDemo_equals_App.zip?attredirects=0&d=1

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

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