Skip to main content

Features of Java:



Features of Java:
In  Java Programming language we introduce with some keyword like Object-oriented, Simple, Portable Platform independent  etc.  Yes! These are feature of Java. There are many features in Java. They are also known as java buzzwords. The main features of Java are:


Feature of Java
  • Simple
  • Object-Oriented 
  • Portable  
  • Platform independent 
  •  Secured 
  •  Robust 
  • Architecture-neutral
  •  Dynamic 
  •  Interpreted 
  •  High Performance 
  •   Multithreaded 
  •  Distributed


The Java Features are given below in detail.



Simple
Java is easy to learn and its syntax is quite simple, clean and easy to understand. The confusing and ambiguous concepts of C++ are either left out in Java or they have been re-implemented in a cleaner way. No need to remove unreferenced objects because there is Automatic Garbage Collection in java.

E.g.: Pointers and Operator Overloading are not there in java but were an important part of C++.


 
Object-oriented
Object-oriented means we organize our software as a combination of different types of objects that incorporates 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:
* Object
*  Class
*  Inheritance
* Polymorphism
* Abstraction
* Encapsulation



Platform Independent
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 software-based platform.
The Java platform differs from most other platforms in the sense that it is a software-based platform that runs on the top of other hardware-based platforms. It has two components:
  1. Runtime Environment
  2. API(Application Programming Interface)
j2ee-academy
Java code can be run on multiple platforms e.g. 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
When it comes to security, Java is always the first choice. With java secure features it enable us to develop virus free, temper free system. Java program always runs in Java runtime environment with almost null interaction with system OS, hence it is more secure.
Java is secured because:
  • No explicit pointer
  • Java Programs run inside virtual machine sandbox 
  • Classloader: adds security by separating the package for the classes of the local file system from those that are imported from network sources.
  • Bytecode Verifier: checks the code fragments for illegal code that can violate access right to objects.
  • Security Manager: determines what resources a class can access such as reading and writing to the local disk.
j2ee-academy
These securities are provided by java language. Some security can also be provided by application developer through SSL, JAAS, Cryptography etc.



Robust
Robust simply means strong. Java uses strong memory management. There are lack of pointers that avoids security problem. There is automatic garbage collection in java. There is exception handling and type checking mechanism in java. All these points make java robust.



Architecture-neutral
Compiler generates bytecodes, which have nothing to do with particular computer architecture; hence a Java program is easy to interpret on any machine
There are no implementation dependent features e.g. size of primitive types is fixed.



Portable
Java Byte code can be carried to any platform. No implementation dependent features. Everything related to storage is predefined, example: size of primitive data types



High-performance
It has high performance because of following reasons;
  • This language uses Bytecode which is faster than ordinary pointer code so Performance of this language is high.
  • Garbage collector, collect the unused memory space and improve the performance of the application.
  • It has no pointers so that using this language we can develop an application very easily.
  • It support multithreading, because of this time consuming process can be reduced to executing the program.



Distributed
We can create distributed applications in java. RMI and EJB are used for creating distributed applications. We may 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.


Comments

Post a Comment

Popular posts from this blog

A brief history of java

A brief history of java: James Gosling The history of Java Language is more interesting. The history of Java starts from “Green Project”. In 1991 The Green Project initiated by James Gosling , Mike Sheridan , and Patrick Naughton . A small group of Sun engineers called the "Green Team" believed that the next wave in computing was the union of digital consumer devices and computers. Led by James Gosling, the team worked around the clock and created the programming language that would revolutionize our world – Java.   The language was initially called Oak ( Oak is a symbol of strength and chosen as a national tree of many countries like U.S.A., France, Germany, Romania etc ). Later the project went by the name Green and was finally renamed Java , from Java coffee (produced in the Java, is an island of Indonesia).  Sun Microsystem s released the first public implementation as Java 1.0 in 1995. It promised "Write Once, Run Anywhere" (WORA), pr

What is Java?

What is Java? The first released of Java on Jan 23, 1996 by Sun Microsystems. Java is a computer programming language. It is a widely used programming language. It is the most popular programming language for Android Smartphone. It’s known as a high-level language because it can be read and written easily by humans. Once a program has been written, the high-level instructions are translated into numeric codes that computers can understand and execute. It enables programmers to write computer instructions using English-based commands instead of having to write in numeric codes. Java was designed to have the look and feel of the  C++  language, but it is simpler to use than C++ and enforces an  object-oriented programming  model. Java can be used to create complete applications that may run on a single computer or be distributed among servers and clients in a network. It can also be used to build a small application module or applet for use as part of a webpage.