Showing posts with label Java. Show all posts
Showing posts with label Java. Show all posts

Friday 5 October 2018

Java vs Python Comparison

Java :-

It is a fast, secure and reliable general purpose computer programming language.

Python :-

A Readable, efficient and powerful high level programming language.




1. Speed

Java 
    → Statically Typed and Faster than Python
Python
    → Dynamically typed and Slower than Java.

2. Legacy :-

Java 
    → Java legacy systems are typically larger and numerous
Python
    → Python has less legacy problem

3. Code

Java
    → Longer lines of code when compared to Python
Python
    → Shorter Lines of code when compared to Java

4. Databases

Java
     → Most popular and widely used database
Python
      → Access layers are weaker than Java's JDBC

5. Practical Agility

Java
       → Popular for mobile and web applications
Python
        →  Popular for Data Science, ML, AI and IoT.

6. Trends



7. Salary 




8. Syntax 

Basic Differences

Java
     → Java is a compiled language.
     → Java is an object oriented programming language.
     → Java is statically typed.
Python
     → Python is an interpreted language.
     → Python is a scripting language.
     → Python is dynamically typed.

Number of  Lines

Java
        public class HelloWorld {
             public static void (string[] args)  {
                   // print "Hello World" to the terminal window.
                   System.out.println("Hello, World");
              }
       }
Python
             The program prints Hello, World!
          print ("Hello, World!");

 Semicolon

Java
              class Programming  {
                    // constructor method
                Programming ( )  {
                  System.out.println ("constructor method called");
                       }
                public static void main(string[ ] args)  {
                  Programming object = new programming ( );
                  }
             }
Python
                class Student:
                   # Constructor - Parametrized
                   def _int_(self, name):
                    print ("This is parametrized constructor")
                       self.name = name
                    def show (self)
                      print ("Hello", self.name)
                student = Student ("Irawen")
                   student.show( )

Indentation

Tuesday 10 July 2018

Java - The Complete Reference by Herbert Schildt

This book is a comprehensive guide to the Java language, describing its syntax, keywords and fundamental programming principles. Significant portions of the Java API library are also examined. This book is for all programmers, whether you are a novice or an experienced pro. The beginner will find its carefully paced discussions and many examples especially helpful.

Download:

Friday 13 April 2018

String is Empty Example



  1. /*
            Java String isEmpty Example.
            This Java String isEmpty example shows how to check whether the given
            string is empty or not using isEmpty method of Java String class.
     */
    public class JavaStringIsEmptyExample {
            public static void main(String args[]){

                    String str1 = “”;
                    String str2 = null;
                    String str3 = “Hello World”;

                    /*
                     * To check whether the String is empty or not, use
                     * boolean isEmpty() method of Java String class.
                     *
                     * This method returns true if and only if string.length() is 0.
                     */

                    System.out.println(“Is String 1 empty? :” + str1.isEmpty());

                    //this will throw NullPointerException since str2 is null
                    //System.out.println(“Is String 2 empty? :” + str2.isEmpty());
                   
                    System.out.println(“Is String 3 empty? :” + str3.isEmpty());

                    /*
                     * Please note that isEmpty method was added in JDK 1.6 and it is not available
                     * in previous versions.
                     *
                     * However, you can use  
                     * (string.length() == 0) instead of (string.isEmpty())
                     * in previous JDK versions.
                     */
            }
    }

    /*
    Output of Java String isEmpty would be
    Is String 1 empty? :true
    Is String 3 empty? :false
    */

String to Date Example




  •         Java String to Date Example.
            This Java String to Date example shows how to convert Java String to Date object.
     */
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.Date;

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

                    //Java String having date
                    String strDate = “21/08/2011”;

                    /*
                     * To convert Java String to Date, use
                     * parse(String) method of SimpleDateFormat class.
                     *
                     * parse method returns the Java Date object.
                     */

                    try{

                            /*
                             * Create new object of SimpleDateFormat class using
                             * SimpleDateFormat(String pattern) constructor.
                             */

                            SimpleDateFormat sdf = new SimpleDateFormat(“dd/MM/yyyy”);

                            //convert Java String to Date using parse method of SimpleDateFormat
                            Date date = sdf.parse(strDate);

                            //Please note that parse method throws ParseException if the String date could not be parsed.

                            System.out.println(“Date is: “ + date);

                    }catch(ParseException e){
                            System.out.println(“Java String could not be converted to Date: “ + e);
                    }
            }
    }

    /*
    Output of Java String to Date example would be
    Fri Jan 21 00:00:00 IST 2011
    */

String to Lower Case example



  1. /*
            Java String to Lower Case example.
            This Java String to Lower Case example shows how to change the string to lower case
            using toLowerCase method of String class.
    */
    public class StringToLowerCaseExample {

            public static void main(String[] args) {

                    String str = “STRING TOLOWERCASE EXAMPLE”;

                    /*
                     * To change the case of string to lower case use,
                     * public String toLowerCase() method of String class.
                     *
                     */

                     String strLower = str.toLowerCase();

                     System.out.println(“Original String: “ + str);
                     System.out.println(“String changed to lower case: “ + strLower);
            }
    }

    /*
    Output would be
    Original String: STRING TOLOWERCASE EXAMPLE
    String changed to lower case: string tolowercase example
    */

String to UpperCase example



  1. /*
            Java String to Upper Case example.
            This Java String to Upper Case example shows how to change the string to upper case
            using toUpperCase method of String class.
    */

    public class StringToUpperCaseExample  
    {

            public static void main(String[] args)  
    {

                    String str = “string touppercase example”;

                    /*
                     * To change the case of string to upper case use,
                     * public String toUpperCase() method of String class.
                     *
                     */

                     String strUpper = str.toUpperCase();

                     System.out.println(“Original String: “ + str);
                     System.out.println(“String changed to upper case: “ + strUpper);
            }
    }

    /*
    Output would be
    Original String: string touppercase example
    String changed to upper case: STRING TOUPPERCASE EXAMPLE*/

String Trim Example



  1. /*
            Java String Trim Example.
            This Java String trim example shows how to remove leading and trailing space
            from string using trim method of Java String class.
    */

    public class RemoveLeadingTrailingSpace  
    {

            public static void main(String[] args)  
    {

                    String str = ”   String Trim Example   “;

                    /*
                     * To remove leading and trailing space from string use,
                     * public String trim() method of Java String class.
                     */

                     String strTrimmed = str.trim();

                     System.out.println(“Original String is: “ + str);
                     System.out.println(“Removed Leading and trailing space”);
                     System.out.println(“New String is: “ + strTrimmed);
            }
    }

    /*
    Output would be
    Original String is:    String Trim Example  
    Removed Leading and trailing space
    New String is: String Trim Example
    */

String Split Example



*
  • Java String split example.
    This Java String split example describes how Java String is split into multiple
    Java String objects.
    */

    public class JavaStringSplitExample{

      public static void main(String args[]){
      /*
      Java String class defines following methods to split Java String object.
      String[] split( String regularExpression )
      Splits the string according to given regular expression.
      String[] split( String reularExpression, int limit )
      Splits the string according to given regular expression. The number of resultant
      substrings by splitting the string is controlled by limit argument.
      */
      /* String to split. */
      String str = “one-two-three”;
      String[] temp;

      /* delimiter */
      String delimiter = “-“;
      /* given string will be split by the argument delimiter provided. */
      temp = str.split(delimiter);
      /* print substrings */
      for(int i =0; i < temp.length ; i++)
        System.out.println(temp[i]);

      /*
      IMPORTANT : Some special characters need to be escaped while providing them as
      delimiters like “.” and “|”.
      */

      System.out.println(“”);
      str = “one.two.three”;
      delimiter = \\.”;
      temp = str.split(delimiter);
      for(int i =0; i < temp.length ; i++)
        System.out.println(temp[i]);

      /*
      Using second argument in the String.split() method, we can control the maximum
      number of substrings generated by splitting a string.
      */
      System.out.println(“”);
      temp = str.split(delimiter,2);
      for(int i =0; i < temp.length ; i++)
        System.out.println(temp[i]);

      }

    }

    /*
    OUTPUT of the above given Java String split Example would be :
    one
    two
    three
    one
    two
    three
    one
    two.three
    */

String Replace Example



  1. /*
    Java String replace example.
    This Java String Replace example describes how replace method of java String class
    can be used to replace character or substring can be replaced by new one.
    */
    public class JavaStringReplaceExample{

      public static void main(String args[]){

        /*
        Java String class defines three methods to replace character or substring from
        the given Java String object.
        1) String replace(int oldChar, int newChar)
        This method replaces a specified character with new character and returns a
        new string object.
        2) String replaceFirst(String regularExpression, String newString)
        Replaces the first substring of this string that matches the given regular
        expression with the given new string.
        3) String replaceAll(String regex, String replacement)
        Replaces the each substring of this string that matches the
        given regular expression with the given new string.
        */

        String str=“Replace Region”;

        /*
        Replaces all occourances of given character with new one and returns new
        String object.
        */
        System.out.println( str.replace( ‘R’,‘A’ ) );

        /*
        Replaces only first occourances of given String with new one and
        returns new String object.
        */
        System.out.println( str.replaceFirst(“Re”, “Ra”) );

        /*
        Replaces all occourances of given String with new one and returns
        new String object.
        */
        System.out.println( str.replaceAll(“Re”, “Ra”) );

      }

    }

    /*
    OUTPUT of the above given Java String Replace Example would be :
    Aeplace Aegion
    Raplace Region
    Raplace Ragion
    */

String Length Example



  1. /*
      Java String Length Example
      This example shows how to get a length of a given String object.
    */

    public class StringLengthExample 
    {

      public static void main(String[] args)  
    {
        //declare the String object
        String str = “Hello World”;

        //length() method of String returns the length of a String.
        int length = str.length();
        System.out.println(“Length of a String is : “ + length);
      }
    }

    /*
    Output of a program would be:
    Length of a String is : 11
    */

String Contains example





  •        This Java String contains examples shows how to use contains method of Java String class.
     */
    public class JavaStringContains {
            public static void main(String args[]){
                    String str1 = “Hello World”;
                    String str2 = “Hello”;

                    /*
                     * To check whether the string contains specified character sequence use,
                     * boolean contains(CharSequence sq)
                     * method of Java String class.
                     *
                     * This method returns true if the string contains given character sequence.
                     * Please note that contains method is added in Java 1.5  
                     */
                   
                    boolean blnFound = str1.contains(str2);
                    System.out.println(“String contains another string? : “ + blnFound);

                    /*
                     * Please also note that the comparison is case sensitive.
                     */
                   
            }
    }

    /*
    Output of Java String contains example would be
    String contains another string? : true
    */

String Concat Example



  1. /*
            Java String Concat Example.
            This Java String concat example shows how to concat String in Java.
     */
    public class JavaStringConcat {
            public static void main(String args[]){
                    /*
                     * String concatenation can be done in several ways in Java.
                     */

                    String str1 = “Hello”;
                    String str2 = ” World”;

                    //1. Using + operator
                    String str3 = str1 + str2;
                    System.out.println(“String concat using + operator : “ + str3);

                    /*
                     * Internally str1 + str 2 statement would be executed as,
                     * new StringBuffer().append(str1).append(str2)
                     *
                     * String concatenation using + operator is not recommended for large number
                     * of concatenation as the performance is not good.
                     */
                   
                    //2. Using String.concat() method
                    String str4 = str1.concat(str2);
                    System.out.println(“String concat using String concat method : “ + str4);

                    //3. Using StringBuffer.append method
                    String str5 = new StringBuffer().append(str1).append(str2).toString();
                    System.out.println(“String concat using StringBuffer append method : “ + str5);
            }

    }

    /*
    Output of Java String concat example would be
    String concat using + operator : Hello World
    String concat using String concat method : Hello World
    String concat using StringBuffer append method : Hello World
    */

String Compare Example



  1. /*
    Java String compare example.
    This Java String compare example describes how Java String is compared with another
    Java String object or Java Object.
    */

    public class JavaStringCompareExample{

      public static void main(String args[]){

      /*
      Java String class defines following methods to compare Java String object.
      1) int compareTo( String anotherString )
      compare two string based upon the unicode value of each character in the String.
      Returns negative int if first string is less than another
      Returns positive int if first string is grater than another
      Returns 0 if both strings are same.
      2) int compareTo( Object obj )
      Behaves exactly like compareTo ( String anotherString) if the argument object
      is of type String, otherwise throws ClassCastException.
      3) int compareToIgnoreCase( String anotherString )
      Compares two strings ignoring the character case of the given String.
      */

      String str = “Hello World”;
      String anotherString = “hello world”;
      Object objStr = str;

      /* compare two strings, case sensitive */
      System.out.println( str.compareTo(anotherString) );
      /* compare two strings, ignores character case  */
      System.out.println( str.compareToIgnoreCase(anotherString) );
      /* compare string with object */
      System.out.println( str.compareTo(objStr) );

      }

    }

    /*
    OUTPUT of the above given Java String compare Example would be :
    -32
    0
    0
    */

String Array Length Example



  1. /*
            Java String Array Length Example
            This Java String Array Length example shows how to find number of elements
            contained in an Array.
     */

    public class JavaStringArrayLengthExample {

            public static void main(String args[]){

                    //create String array
                    String[] strArray = new String[]{“Java”, “String”, “Array”, “Length”};

                    /*
                     * To get length of array, use length property of array.
                     */
                    int length = strArray.length;

                    System.out.println(“String array length is: “ + length);

                    //print elements of an array
                    for(int i=0; i < length; i++){
                            System.out.println(strArray[i]);
                    }
            }
    }

    /*
    Output of above given Java String length example would be
    String array length is: 4
    Java
    String
    Array
    Length
    */

String Array Contains Example



  1. /*
            Java String Array Contains Example
            This Java String Array Contains example shows how to find a String in
            String array in Java.
     */

    import java.util.Arrays;

    public class StringArrayContainsExample {

            public static void main(String args[]){

                    //String array
                    String[] strMonths = new String[]{“January”, “February”, “March”, “April”, “May”};

                    //Strings to find
                    String strFind1 = “March”;
                    String strFind2 = “December”;

                    /*
                     * There are several ways we can check whether a String array
                     * contains a particular string.
                     *
                     * First of them is iterating the array elements and check as given below.
                     */
                   
                    boolean contains = false;

                    //iterate the String array
                    for(int i=0; i < strMonths.length; i++){

                            //check if string array contains the string
                            if(strMonths[i].equals(strFind1)){

                                    //string found
                                    contains = true;
                                    break;

                            }
                    }

                    if(contains){
                            System.out.println(“String array contains String “ + strFind1);
                    }else{
                            System.out.println(“String array does not contain String “ + strFind1);
                    }

                    /*
                     * Second way to check whether String array contains a string is to use
                     * Arrays class as given below.
                     */

                    contains = Arrays.asList(strMonths).contains(strFind1);
                    System.out.println(“Does String array contain “ + strFind1 + “? “ + contains);

                    contains = Arrays.asList(strMonths).contains(strFind2);
                    System.out.println(“Does String array contain “ + strFind2 + “? “ + contains);

            }
    }

    /*
    Output of above given Java String Array Contains example would be
    String array contains String March
    Does String array contain March? true
    Does String array contain December? false
    */

Popular Posts

Categories

AI (27) Android (24) AngularJS (1) Assembly Language (2) aws (17) Azure (7) BI (10) book (4) Books (114) C (77) C# (12) C++ (82) Course (60) Coursera (176) coursewra (1) Cybersecurity (22) data management (11) Data Science (89) Data Strucures (6) Deep Learning (9) Django (6) Downloads (3) edx (2) Engineering (14) Excel (13) Factorial (1) Finance (5) flutter (1) FPL (17) Google (19) Hadoop (3) HTML&CSS (46) IBM (25) IoT (1) IS (25) Java (92) Leet Code (4) Machine Learning (44) Meta (18) MICHIGAN (5) microsoft (3) Pandas (3) PHP (20) Projects (29) Python (745) Python Coding Challenge (198) Questions (2) R (70) React (6) Scripting (1) security (3) Selenium Webdriver (2) Software (17) SQL (40) UX Research (1) web application (8)

Followers

Person climbing a staircase. Learn Data Science from Scratch: online program with 21 courses