Author: saqibkhan

  • Data Types in Java

    Data types specify the different sizes and values that can be stored in the variable. There are two types of data types in Java:

    1. Primitive data types: The primitive data types include boolean, char, byte, short, int, long, float and double.
    2. Non-primitive data types: The non-primitive data types include Classes, Interfaces, and Arrays.

    Java Primitive Data Types

    In Java language, primitive data types are the building blocks of data manipulation. These are the most basic data types available in Java language.

    Java is a statically-typed programming language. It means, all variables must be declared before its use. That is why we need to declare variable’s type and name.

    There are 8 types of primitive data types:

    • boolean data type
    • byte data type
    • char data type
    • short data type
    • int data type
    • long data type
    • float data type
    • double data type
    Java Data Types
    Data TypeDefault ValueDefault size
    booleanfalse1 bit
    char‘\u0000’2 byte
    byte01 byte
    short02 byte
    int04 byte
    long0L8 byte
    float0.0f4 byte
    double0.0d8 byte

    Boolean Data Type

    The Boolean data type is used to store only two possible values: true and false. This data type is used for simple flags that track true/false conditions.

    The Boolean data type specifies one bit of information, but its “size” can’t be defined precisely.

    Example:

    Boolean one = false  

    Byte Data Type

    The byte data type is an example of primitive data type. It isan 8-bit signed two’s complement integer. Its value-range lies between -128 to 127 (inclusive). Its minimum value is -128 and maximum value is 127. Its default value is 0.

    The byte data type is used to save memory in large arrays where the memory savings is most required. It saves space because a byte is 4 times smaller than an integer. It can also be used in place of “int” data type.

    Example:

    byte a = 10, byte b = -20  

    Short Data Type

    The short data type is a 16-bit signed two’s complement integer. Its value-range lies between -32,768 to 32,767 (inclusive). Its minimum value is -32,768 and maximum value is 32,767. Its default value is 0.

    The short data type can also be used to save memory just like byte data type. A short data type is 2 times smaller than an integer.

    Example:

    short s = 10000, short r = -5000  

    Int Data Type

    The int data type is a 32-bit signed two’s complement integer. Its value-range lies between – 2,147,483,648 (-2^31) to 2,147,483,647 (2^31 -1) (inclusive). Its minimum value is – 2,147,483,648and maximum value is 2,147,483,647. Its default value is 0.

    The int data type is generally used as a default data type for integral values unless if there is no problem about memory.

    Example:

    int a = 100000, int b = -200000  

    Long Data Type

    The long data type is a 64-bit two’s complement integer. Its value-range lies between -9,223,372,036,854,775,808(-2^63) to 9,223,372,036,854,775,807(2^63 -1)(inclusive). Its minimum value is – 9,223,372,036,854,775,808and maximum value is 9,223,372,036,854,775,807. Its default value is 0. The long data type is used when you need a range of values more than those provided by int.

    Example:

    long a = 100000L, long b = -200000L  

    Float Data Type

    The float data type is a single-precision 32-bit IEEE 754 floating point.Its value range is unlimited. It is recommended to use a float (instead of double) if you need to save memory in large arrays of floating point numbers. The float data type should never be used for precise values, such as currency. Its default value is 0.0F.

    Example:

    float f1 = 234.5f  

    Double Data Type

    The double data type is a double-precision 64-bit IEEE 754 floating point. Its value range is unlimited. The double data type is generally used for decimal values just like float. The double data type also should never be used for precise values, such as currency. Its default value is 0.0d.

    Example:

    double d1 = 12.3  

    Char Data Type

    The char data type is a single 16-bit Unicode character. Its value-range lies between ‘\u0000’ (or 0) to ‘\uffff’ (or 65,535 inclusive).The char data type is used to store characters.

    Example:

    char letterA = 'A'  

    Why char uses 2 byte in java and what is \u0000 ?

    It is because java uses Unicode system not ASCII code system. The \u0000 is the lowest range of Unicode system. To get detail explanation about Unicode visit next page.

  • Java Variables

    A variable is a container which holds the value while the Java program is executed. A variable is assigned with a data type.

    Variable is a name of memory location. There are three types of variables in java: local, instance and static.

    There are two types of data types in Java: primitive and non-primitive.

    Variable

    A variable is the name of a reserved area allocated in memory. In other words, it is a name of the memory location. It is a combination of “vary + able” which means its value can be changed.

    variables in java
    int data=50;//Here data is variable  

    Types of Variables

    There are three types of variables in Java:

    • local variable
    • instance variable
    • static variable
    types of variables in java

    1) Local Variable

    A variable declared inside the body of the method is called local variable. You can use this variable only within that method and the other methods in the class aren’t even aware that the variable exists.

    A local variable cannot be defined with “static” keyword.

    2) Instance Variable

    A variable declared inside the class but outside the body of the method, is called an instance variable. It is not declared as static.

    It is called an instance variable because its value is instance-specific and is not shared among instances.

    3) Static variable

    A variable that is declared as static is called a static variable. It cannot be local. You can create a single copy of the static variable and share it among all the instances of the class. Memory allocation for static variables happens only once when the class is loaded in the memory.

    Example to understand the types of variables in java

    public class A  
    
    {  
    
        static int m=100;//static variable  
    
        void method()  
    
        {    
    
            int n=90;//local variable    
    
        }  
    
        public static void main(String args[])  
    
        {  
    
            int data=50;//instance variable    
    
        }  
    
    }//end of class 

      Java Variable Example: Add Two Numbers

      public class Simple{    
      
      public static void main(String[] args){    
      
      int a=10;    
      
      int b=10;    
      
      int c=a+b;    
      
      System.out.println(c);    
      
      }  
      
      }  

        Output:

        20
        

        Java Variable Example: Widening

        public class Simple{  
        
        public static void main(String[] args){  
        
        int a=10;  
        
        float f=a;  
        
        System.out.println(a);  
        
        System.out.println(f);  
        
        }}

        Output:

        10
        10.0
        

        Java Variable Example: Narrowing (Typecasting)

        public class Simple{  
        
        public static void main(String[] args){  
        
        float f=10.5f;  
        
        //int a=f;//Compile time error  
        
        int a=(int)f;  
        
        System.out.println(f);  
        
        System.out.println(a);  
        
        }} 

          Output:

          10.5
          10
          

          Java Variable Example: Overflow

          class Simple{  
          
          public static void main(String[] args){  
          
          //Overflow  
          
          int a=130;  
          
          byte b=(byte)a;  
          
          System.out.println(a);  
          
          System.out.println(b);  
          
          }}

          Output:

          130
          -126
          

          Java Variable Example: Adding Lower Type

          class Simple{  
          
          public static void main(String[] args){  
          
          byte a=10;  
          
          byte b=10;  
          
          //byte c=a+b;//Compile Time Error: because a+b=20 will be int  
          
          byte c=(byte)(a+b);  
          
          System.out.println(c);  
          
          }} 

            Output:

            20
            
          1. JVM (Java Virtual Machine) Architecture

            JVM (Java Virtual Machine) is an abstract machine. It is a specification that provides runtime environment in which java bytecode can be executed.

            JVMs are available for many hardware and software platforms (i.e. JVM is platform dependent).

            What is JVM

            It is:

            1. A specification where working of Java Virtual Machine is specified. But implementation provider is independent to choose the algorithm. Its implementation has been provided by Oracle and other companies.
            2. An implementation Its implementation is known as JRE (Java Runtime Environment).
            3. Runtime Instance Whenever you write java command on the command prompt to run the java class, an instance of JVM is created.

            What it does

            The JVM performs following operation:

            • Loads code
            • Verifies code
            • Executes code
            • Provides runtime environment

            JVM provides definitions for the:

            • Memory area
            • Class file format
            • Register set
            • Garbage-collected heap
            • Fatal error reporting etc.

            JVM Architecture

            Let’s understand the internal architecture of JVM. It contains classloader, memory area, execution engine etc.

            JVM Architecture

            1) Classloader

            Classloader is a subsystem of JVM which is used to load class files. Whenever we run the java program, it is loaded first by the classloader. There are three built-in classloaders in Java.

            1. Bootstrap ClassLoader: This is the first classloader which is the super class of Extension classloader. It loads the rt.jar file which contains all class files of Java Standard Edition like java.lang package classes, java.net package classes, java.util package classes, java.io package classes, java.sql package classes etc.
            2. Extension ClassLoader: This is the child classloader of Bootstrap and parent classloader of System classloader. It loades the jar files located inside $JAVA_HOME/jre/lib/ext directory.
            3. System/Application ClassLoader: This is the child classloader of Extension classloader. It loads the classfiles from classpath. By default, classpath is set to current directory. You can change the classpath using “-cp” or “-classpath” switch. It is also known as Application classloader.
            //Let's see an example to print the classloader name  
            
            public class ClassLoaderExample  
            
            {  
            
                public static void main(String[] args)  
            
                {  
            
                    // Let's print the classloader name of current class.   
            
                    //Application/System classloader will load this class  
            
                    Class c=ClassLoaderExample.class;  
            
                    System.out.println(c.getClassLoader());  
            
                    //If we print the classloader name of String, it will print null because it is an  
            
                    //in-built class which is found in rt.jar, so it is loaded by Bootstrap classloader  
            
                    System.out.println(String.class.getClassLoader());  
            
                }  
            
            }

            Output:

            sun.misc.Launcher$AppClassLoader@4e0e2f2a
            null
            

            These are the internal classloaders provided by Java. If you want to create your own classloader, you need to extend the ClassLoader class.

            2) Class(Method) Area

            Class(Method) Area stores per-class structures such as the runtime constant pool, field and method data, the code for methods.

            3) Heap

            It is the runtime data area in which objects are allocated.

            4) Stack

            Java Stack stores frames. It holds local variables and partial results, and plays a part in method invocation and return.

            Each thread has a private JVM stack, created at the same time as thread.

            A new frame is created each time a method is invoked. A frame is destroyed when its method invocation completes.

            5) Program Counter Register

            PC (program counter) register contains the address of the Java virtual machine instruction currently being executed.

            6) Native Method Stack

            It contains all the native methods used in the application.

            7) Execution Engine

            It contains:

            1. A virtual processor
            2. Interpreter: Read bytecode stream then execute the instructions.
            3. Just-In-Time(JIT) compiler: It is used to improve the performance. JIT compiles parts of the byte code that have similar functionality at the same time, and hence reduces the amount of time needed for compilation. Here, the term “compiler” refers to a translator from the instruction set of a Java virtual machine (JVM) to the instruction set of a specific CPU.

            8) Java Native Interface

            Java Native Interface (JNI) is a framework which provides an interface to communicate with another application written in another language like C, C++, Assembly etc. Java uses JNI framework to send output to the Console or interact with OS libraries.

          2. Difference between JDK, JRE, and JVM

            We must understand the differences between JDK, JRE, and JVM before proceeding further to Java. See the brief overview of JVM here.

            If you want to get the detailed knowledge of Java Virtual Machine, move to the next page. Firstly, let’s see the differences between the JDK, JRE, and JVM.

            JVM

            JVM (Java Virtual Machine) is an abstract machine. It is called a virtual machine because it doesn’t physically exist. It is a specification that provides a runtime environment in which Java bytecode can be executed. It can also run those programs which are written in other languages and compiled to Java bytecode.

            JVMs are available for many hardware and software platforms. JVM, JRE, and JDK are platform dependent because the configuration of each OS is different from each other. However, Java is platform independent. There are three notions of the JVM: specificationimplementation, and instance.

            The JVM performs the following main tasks:

            • Loads code
            • Verifies code
            • Executes code
            • Provides runtime environment

            JRE

            JRE is an acronym for Java Runtime Environment. It is also written as Java RTE. The Java Runtime Environment is a set of software tools which are used for developing Java applications. It is used to provide the runtime environment. It is the implementation of JVM. It physically exists. It contains a set of libraries + other files that JVM uses at runtime.

            The implementation of JVM is also actively released by other companies besides Sun Micro Systems.

            JRE

            JDK

            JDK is an acronym for Java Development Kit. The Java Development Kit (JDK) is a software development environment which is used to develop Java applications and applets. It physically exists. It contains JRE + development tools.

            JDK is an implementation of any one of the below given Java Platforms released by Oracle Corporation:

            • Standard Edition Java Platform
            • Enterprise Edition Java Platform
            • Micro Edition Java Platform

            The JDK contains a private Java Virtual Machine (JVM) and a few other resources such as an interpreter/loader (java), a compiler (javac), an archiver (jar), a documentation generator (Javadoc), etc. to complete the development of a Java Application.

            JDK
          3. How to set path in Java

            The path is required to be set for using tools such as javac, java, etc.

            If you are saving the Java source file inside the JDK/bin directory, the path is not required to be set because all the tools will be available in the current directory.

            However, if you have your Java file outside the JDK/bin folder, it is necessary to set the path of JDK.

            There are two ways to set the path in Java:

            1. Temporary
            2. Permanent

            1) How to set the Temporary Path of JDK in Windows

            To set the temporary path of JDK, you need to follow the following steps:

            • Open the command prompt
            • Copy the path of the JDK/bin directory
            • Write in command prompt: set path=copied_path

            For Example:

            set path=C:\Program Files\Java\jdk1.6.0_23\bin
            

            Let’s see it in the figure given below:

            How to set the path in Java

            2) How to set Permanent Path of JDK in Windows

            For setting the permanent path of JDK, you need to follow these steps:

            • Go to MyComputer properties -> advanced tab -> environment variables -> new tab of user variable -> write path in variable name -> write path of bin folder in variable value -> ok -> ok -> ok

            For Example:

            1) Go to MyComputer properties
            how to set path in java
            2) Click on the advanced tab
            how to set path in java
            3) Click on environment variables
            how to set path in java
            4) Click on the new tab of user variables
            how to set path in java
            5) Write the path in the variable name
            how to set path in java
            6) Copy the path of bin folder
            how to set path in java
            7) Paste path of bin folder in the variable value
            how to set path in java
            8) Click on ok button
            how to set path in java
            9) Click on ok button
            how to set path in java

            Now your permanent path is set. You can now execute any program of java from any drive.

            Setting Java Path in Linux OS

            Setting path in Linux OS is the same as setting the path in the Windows OS. But, here we use the export tool rather than set. Let’s see how to set path in Linux OS:

            export PATH=$PATH:/home/jdk1.6.01/bin/
            

            Here, we have installed the JDK in the home directory under Root (/home).

          4. Internal Details of Hello Java Program

            In the previous section, we have created Java Hello World program and learn how to compile and run a Java program. In this section, we are going to learn, what happens while we compile and run the Java program. Moreover, we will see some questions based on the first program.

            What happens at compile time?

            At compile time, the Java file is compiled by Java Compiler (It does not interact with OS) and converts the Java code into bytecode.

            compilation of simple java program

            What happens at runtime?

            At runtime, the following steps are performed:

            Java Runtime Processing

            Classloader: It is the subsystem of JVM that is used to load class files.

            Bytecode Verifier: Checks the code fragments for illegal code that can violate access rights to objects.

            Interpreter: Read bytecode stream then execute the instructions.

            Q) Can you save a Java source file by another name than the class name?

            Yes, if the class is not public. It is explained in the figure given below:

            how to save simple java program by another name
            To compile:javac Hard.java
            To execute:java Simple

            Observe that, we have compiled the code with file name but running the program with class name. Therefore, we can save a Java program other than class name.

            Q) Can you have multiple classes in a java source file?

            Yes, like the figure given below illustrates:

            how to contain multiple class in simple java program
          5. First Java Program | Hello World Example

            In this section, we will learn how to write the simple program of Java. We can write a simple hello Java program easily after installing the JDK.

            To create a simple Java program, you need to create a class that contains the main method. Let’s understand the requirement first.

            The requirement for Java Hello World Example

            For executing any Java program, the following software or application must be properly installed.

            • Install the JDK if you don’t have installed it, download the JDK and install it.
            • Set path of the jdk/bin directory. http://www.javatpoint.com/how-to-set-path-in-java
            • Create the Java program
            • Compile and run the Java program

            Creating Hello World Example

            Let’s create the hello java program:

            class Simple{  
            
                public static void main(String args[]){  
            
                 System.out.println("Hello Java");  
            
                }  
            
            }

            Save the above file as Simple.java.

            To compile:javac Simple.java
            To execute:java Simple

            Output:

            Hello Java
            

            Compilation Flow:

            When we compile Java program using javac tool, the Java compiler converts the source code into byte code.

            Java How to Compile

            Parameters used in First Java Program

            Let’s see what is the meaning of class, public, static, void, main, String[], System.out.println().

            • class keyword is used to declare a class in Java.
            • public keyword is an access modifier that represents visibility. It means it is visible to all.
            • static is a keyword. If we declare any method as static, it is known as the static method. The core advantage of the static method is that there is no need to create an object to invoke the static method. The main() method is executed by the JVM, so it doesn’t require creating an object to invoke the main() method. So, it saves memory.
            • void is the return type of the method. It means it doesn’t return any value.
            • main represents the starting point of the program.
            • String[] args or String args[] is used for command line argument. We will discuss it in coming section.
            • System.out.println() is used to print statement. Here, System is a class, out is an object of the PrintStream class, println() is a method of the PrintStream class. We will discuss the internal working of System.out.println() statement in the coming section.

            To write the simple program, you need to open notepad by start menu -> All Programs -> Accessories -> Notepad and write a simple program as we have shownbelow:

            The first program of java

            As displayed in the above diagram, write the simple program of Java in notepad and saved it as Simple.java. In order to compile and run the above program, you need to open the command prompt by start menu -> All Programs -> Accessories -> command prompt. When we have done with all the steps properly, it shows the following output:

            how to compile and run a simple program of java

            To compile and run the above program, go to your current directory first; my current directory is c:\new. Write here:

            To compile:javac Simple.java
            To execute:java Simple

            In how many ways we can write a Java program?

            There are many ways to write a Java program. The modifications that can be done in a Java program are given below:

            1) By changing the sequence of the modifiers, method prototype is not changed in Java.

            Let’s see the simple code of the main method.

            static public void main(String args[])  

            2) The subscript notation in the Java array can be used after type, before the variable or after the variable.

            Let’s see the different codes to write the main method.

            public static void main(String[] args)  
            
            public static void main(String []args)  
            
            public static void main(String args[])

            3) You can provide var-args support to the main() method by passing 3 ellipses (dots)

            Let’s see the simple code of using var-args in the main() method. We will learn about var-args later in the Java New Features chapter.

            public static void main(String... args)  

            4) Having a semicolon at the end of class is optional in Java.

            Let’s see the simple code.

            class A{  
            
            static public void main(String... args){  
            
            System.out.println("hello java4");  
            
            }  
            
            };

            Valid Java main() method signature

            public static void main(String[] args)  
            public static void main(String []args)  
            public static void main(String args[])  
            public static void main(String... args)  
            static public void main(String[] args)  
            public static final void main(String[] args)  
            final public static void main(String[] args)  
            final strictfp public static void main(String[] args)    

              Invalid Java main() method signature

              public void main(String[] args)  
              
              static void main(String[] args)  
              
              public void static main(String[] args)  
              
              abstract public static void main(String[] args)

              Resolving an error “javac is not recognized as an internal or external command”?

              If there occurs a problem like displayed in the below figure, you need to set a path. Since DOS doesn’t recognize javac and java as internal or external command. To overcome this problem, we need to set a path. The path is not required in a case where you save your program inside the JDK/bin directory. However, it is an excellent approach to set the path. Click here for How to set path in java.

              how to resolve the problem of a hello world program in java
            1. C++ vs Java

              There are many differences and similarities between the C++ programming language and Java. A list of top differences between C++ and Java are given below:

              Comparison IndexC++Java
              Platform-independentC++ is platform-dependent.Java is platform-independent.
              Mainly used forC++ is mainly used for system programming.Java is mainly used for application programming. It is widely used in Windows-based, web-based, enterprise, and mobile applications.
              Design GoalC++ was designed for systems and applications programming. It was an extension of the C programming language.Java was designed and created as an interpreter for printing systems but later extended as a support network computing. It was designed to be easy to use and accessible to a broader audience.
              GotoC++ supports the goto statement.Java doesn’t support the goto statement.
              Multiple inheritanceC++ supports multiple inheritance.Java doesn’t support multiple inheritance through class. It can be achieved by using interfaces in java.
              Operator OverloadingC++ supports operator overloading.Java doesn’t support operator overloading.
              PointersC++ supports pointers. You can write a pointer program in C++.Java supports pointer internally. However, you can’t write the pointer program in java. It means java has restricted pointer support in java.
              Compiler and InterpreterC++ uses compiler only. C++ is compiled and run using the compiler which converts source code into machine code so, C++ is platform dependent.Java uses both compiler and interpreter. Java source code is converted into bytecode at compilation time. The interpreter executes this bytecode at runtime and produces output. Java is interpreted that is why it is platform-independent.
              Call by Value and Call by referenceC++ supports both call by value and call by reference.Java supports call by value only. There is no call by reference in java.
              Structure and UnionC++ supports structures and unions.Java doesn’t support structures and unions.
              Thread SupportC++ doesn’t have built-in support for threads. It relies on third-party libraries for thread support.Java has built-in thread support.
              Documentation commentC++ doesn’t support documentation comments.Java supports documentation comment (/** … */) to create documentation for java source code.
              Virtual KeywordC++ supports virtual keyword so that we can decide whether or not to override a function.Java has no virtual keyword. We can override all non-static methods by default. In other words, non-static methods are virtual by default.
              unsigned right shift >>>C++ doesn’t support >>> operator.Java supports unsigned right shift >>> operator that fills zero at the top for the negative numbers. For positive numbers, it works same like >> operator.
              Inheritance TreeC++ always creates a new inheritance tree.Java always uses a single inheritance tree because all classes are the child of the Object class in Java. The Object class is the root of the inheritance tree in java.
              HardwareC++ is nearer to hardware.Java is not so interactive with hardware.
              Object-orientedC++ is an object-oriented language. However, in the C language, a single root hierarchy is not possible.Java is also an object-oriented language. However, everything (except fundamental types) is an object in Java. It is a single root hierarchy as everything gets derived from java.lang.Object.

              Note

              • Java doesn’t support default arguments like C++.
              • Java does not support header files like C++. Java uses the import keyword to include different classes and methods.

              C++ Program Example

              File: main.cpp

              #include <iostream>  
              
              using namespace std;  
              
              int main() {  
              
                 cout << "Hello C++ Programming";  
              
                 return 0;  
              
              }

              Output:

              Hello C++ Programming
              

              Java Program Example

              File: Simple.java

              class Simple{  
              
                  public static void main(String args[]){  
              
                   System.out.println("Hello Java");  
              
                  }  
              
              }

              Output:

              Hello Java
              
            2. Features of Java

              The primary objective of Java programming language creation was to make it portable, simple and secure programming language. Apart from this, there are also some excellent features which play an important role in the popularity of this language. The features of Java are also known as Java buzzwords.

              A list of the most important features of the Java language is given below.

              Java Features
              1. Simple
              2. Object-Oriented
              3. Portable
              4. Platform independent
              5. Secured
              6. Robust
              7. Architecture neutral
              8. Interpreted
              9. High Performance
              10. Multithreaded
              11. Distributed
              12. Dynamic

              Simple

              Java is very easy to learn, and its syntax is simple, clean and easy to understand. According to Sun Microsystem, Java language is a simple programming language because:

              • Java syntax is based on C++ (so easier for programmers to learn it after C++).
              • Java has removed many complicated and rarely-used features, for example, explicit pointers, operator overloading, etc.
              • There is no need to remove unreferenced objects because there is an Automatic Garbage Collection in Java.

              Object-oriented

              Java is an object-oriented programming language. Everything in Java is an object. Object-oriented means we organize our software as a combination of different types of objects that incorporate both data and behavior.

              Object-oriented programming (OOPs) is a methodology that simplifies software development and maintenance by providing some rules.

              Basic concepts of OOPs are:

              1. Object
              2. Class
              3. Inheritance
              4. Polymorphism
              5. Abstraction
              6. Encapsulation

              Platform Independent

              Java is platform independent

              Java is platform independent because it is different from other languages like C, C++, etc. which are compiled into platform specific machines while Java is a write once, run anywhere language. A platform is the hardware or software environment in which a program runs.

              There are two types of platforms software-based and hardware-based. Java provides a software-based platform.

              The Java platform differs from most other platforms in the sense that it is a software-based platform that runs on top of other hardware-based platforms. It has two components:

              1. Runtime Environment
              2. API(Application Programming Interface)

              Java code can be executed on multiple platforms, for example, Windows, Linux, Sun Solaris, Mac/OS, etc. Java code is compiled by the compiler and converted into bytecode. This bytecode is a platform-independent code because it can be run on multiple platforms, i.e., Write Once and Run Anywhere (WORA).

              Secured

              Java is best known for its security. With Java, we can develop virus-free systems. Java is secured because:

              • No explicit pointer
              • Java Programs run inside a virtual machine sandbox
              how Java is secured
              • Classloader: Classloader in Java is a part of the Java Runtime Environment (JRE) which is used to load Java classes into the Java Virtual Machine dynamically. It adds security by separating the package for the classes of the local file system from those that are imported from network sources.
              • Bytecode Verifier: It checks the code fragments for illegal code that can violate access rights to objects.
              • Security Manager: It determines what resources a class can access such as reading and writing to the local disk.

              Java language provides these securities by default. Some security can also be provided by an application developer explicitly through SSL, JAAS, Cryptography, etc.

              Robust

              The English mining of Robust is strong. Java is robust because:

              • It uses strong memory management.
              • There is a lack of pointers that avoids security problems.
              • Java provides automatic garbage collection which runs on the Java Virtual Machine to get rid of objects which are not being used by a Java application anymore.
              • There are exception handling and the type checking mechanism in Java. All these points make Java robust.

              Architecture-neutral

              Java is architecture neutral because there are no implementation dependent features, for example, the size of primitive types is fixed.

              In C programming, int data type occupies 2 bytes of memory for 32-bit architecture and 4 bytes of memory for 64-bit architecture. However, it occupies 4 bytes of memory for both 32 and 64-bit architectures in Java.

              Portable

              Java is portable because it facilitates you to carry the Java bytecode to any platform. It doesn’t require any implementation.

              High-performance

              Java is faster than other traditional interpreted programming languages because Java bytecode is “close” to native code. It is still a little bit slower than a compiled language (e.g., C++). Java is an interpreted language that is why it is slower than compiled languages, e.g., C, C++, etc.

              Distributed

              Java is distributed because it facilitates users to create distributed applications in Java. RMI and EJB are used for creating distributed applications. This feature of Java makes us able to access files by calling the methods from any machine on the internet.

              Multi-threaded

              A thread is like a separate program, executing concurrently. We can write Java programs that deal with many tasks at once by defining multiple threads. The main advantage of multi-threading is that it doesn’t occupy memory for each thread. It shares a common memory area. Threads are important for multi-media, Web applications, etc.

              Dynamic

              Java is a dynamic language. It supports the dynamic loading of classes. It means classes are loaded on demand. It also supports functions from its native languages, i.e., C and C++.

              Java supports dynamic compilation and automatic memory management (garbage collection).

            3. History of Java

              The history of Java is very interesting. Java was originally designed for interactive television, but it was too advanced technology for the digital cable television industry at the time. The history of Java starts with the Green Team. Java team members (also known as Green Team), initiated this project to develop a language for digital devices such as set-top boxes, televisions, etc. However, it was best suited for internet programming. Later, Java technology was incorporated by Netscape.

              The principles for creating Java programming were “Simple, Robust, Portable, Platform-independent, Secured, High Performance, Multithreaded, Architecture Neutral, Object-Oriented, Interpreted, and Dynamic”. Java was developed by James Gosling, who is known as the father of Java, in 1995. James Gosling and his team members started the project in the early ’90s.

              James Gosling - founder of java

              Currently, Java is used in internet programming, mobile devices, games, e-business solutions, etc. Following are given significant points that describe the history of Java.

              1) James Gosling, Mike Sheridan, and Patrick Naughton initiated the Java language project in June 1991. The small team of sun engineers called Green Team.

              2) Initially it was designed for small, embedded systems in electronic appliances like set-top boxes.

              3) Firstly, it was called “Greentalk” by James Gosling, and the file extension was .gt.

              4) After that, it was called Oak and was developed as a part of the Green project.

              Why Java was named as “Oak”?

              5) Why Oak? Oak is a symbol of strength and chosen as a national tree of many countries like the U.S.A., France, Germany, Romania, etc.

              6) In 1995, Oak was renamed as “Java” because it was already a trademark by Oak Technologies.

              Why Java Programming named “Java”?

              7) Why had they chose the name Java for Java language? The team gathered to choose a new name. The suggested words were “dynamic”, “revolutionary”, “Silk”, “jolt”, “DNA”, etc. They wanted something that reflected the essence of the technology: revolutionary, dynamic, lively, cool, unique, and easy to spell, and fun to say.

              According to James Gosling, “Java was one of the top choices along with Silk“. Since Java was so unique, most of the team members preferred Java than other names.

              8) Java is an island in Indonesia where the first coffee was produced (called Java coffee). It is a kind of espresso bean. Java name was chosen by James Gosling while having a cup of coffee nearby his office.

              9) Notice that Java is just a name, not an acronym.

              10) Initially developed by James Gosling at Sun Microsystems (which is now a subsidiary of Oracle Corporation) and released in 1995.

              11) In 1995, Time magazine called Java one of the Ten Best Products of 1995.

              12) JDK 1.0 was released on January 23, 1996. After the first release of Java, there have been many additional features added to the language. Now Java is being used in Windows applications, Web applications, enterprise applications, mobile applications, cards, etc. Each new version adds new features in Java.

              Java Version History

              Many java versions have been released till now. The current stable release of Java is Java SE 10.

              1. JDK Alpha and Beta (1995)
              2. JDK 1.0 (23rd Jan 1996)
              3. JDK 1.1 (19th Feb 1997)
              4. J2SE 1.2 (8th Dec 1998)
              5. J2SE 1.3 (8th May 2000)
              6. J2SE 1.4 (6th Feb 2002)
              7. J2SE 5.0 (30th Sep 2004)
              8. Java SE 6 (11th Dec 2006)
              9. Java SE 7 (28th July 2011)
              10. Java SE 8 (18th Mar 2014)
              11. Java SE 9 (21st Sep 2017)
              12. Java SE 10 (20th Mar 2018)
              13. Java SE 11 (September 2018)
              14. Java SE 12 (March 2019)
              15. Java SE 13 (September 2019)
              16. Java SE 14 (Mar 2020)
              17. Java SE 15 (September 2020)
              18. Java SE 16 (Mar 2021)
              19. Java SE 17 (September 2021)
              20. Java SE 18 (to be released by March 2022)

              Since Java SE 8 release, the Oracle corporation follows a pattern in which every even version is release in March month and an odd version released in September month.