Features of Java Programming Language
Features of Java Programming Language
Simple :
Secure :
Portable :
Java programs can execute in any environment for which there is a Java run-time
system.(JVM)
Java programs can be run on any platform (Linux,Window,Mac)
Java programs can be transferred over world wide web (e.g applets)
Object-oriented :
Robust :
Java encourages error-free programming by being strictly typed and performing run-time
checks.
Multithreaded :
Architecture-neutral :
Interpreted :
High performance :
Distributed :
Dynamic :
Java programs carry with them substantial amounts of run-time type information that is used
to verify and resolve accesses to objects at run time.
2) History of Java ?
Java was started as a project called "Oak" by James Gosling in June 1991. Gosling's goals
were to implement a virtual machine and a language that had a familiar C like notation but with
greater uniformity and simplicity than C/C++.
The First publication of Java 1.0 was released by Sun Microsystems in 1995. It made the
promise of "Write Once, Run Anywhere", with free runtimes on popular platforms.
In 2006-2007 Sun released java as open source and and plateform independent software.
Over time new enhanced versions of Java have been released. The current version of Java is
Java 1.7 which is also known as Java 7.
3) What is JVM (Java Virtual Machine) & JRE( Java Run time Environment)?
The Java virtual machine (JVM) is a software implementation of a computer that executes
programs like a real machine.
The Java virtual machine is written specifically for a specific operating system, e.g. for
Linux a special implementation is required as well as for Windows.
Java programs are compiled by the Java compiler into bytecode. The Java virtual machine
interprets this bytecode and executes the Java program.
The Java runtime environment (JRE) consists of the JVM and the Java class libraries and
contains the necessary functionality to start Java programs.
The JDK contains in addition the development tools necessary to create Java programs. The
JDK consists therefore of a Java compiler, the Java virtual machine, and the Java class libraries.
1) Simple
Java is a simple language because of its various features, Java Doesn?t Support Pointers ,
Operator Overloading etc. It doesn?t require unreferenced object because java support automatic
garbage collection.
Java provides bug free system due to the strong memory management.
2) Object-Oriented
As the languages like Objective C, C++ fulfills the above four characteristics yet they are
not fully object oriented languages because they are structured as well as object oriented
languages.
In java everything is an Object. Java can be easily extended since it is based on the Object
model
3) Secure
Java is Secure Language because of its many features it enables to develop virus-free,
tamper-free systems. Authentication techniques are based on public-key encryption. Java does
not support pointer explicitly for the memory.
All Program Run under the sandbox.
4) Robust
Java was created as a strongly typed language. Data type issues and problems are resolved at
compile-time, and implicit casts of a variable from one type to another are not allowed.
Memory management has been simplified java in two ways. First Java does not support
direct pointer manipulation or arithmetic. This make it possible for a java program to overwrite
memory or corrupt data.
Second , Java uses runtime garbage collection instead of instead of freeing of memory. In
languages like c++, it Is necessary to delete or free memory once the program has finished with
it.
Java Language is platform-independent due to its hardware and software environment. 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 byte code. This byte code is a platform independent
code because it can be run on multiple platforms i.e. Write Once and Run Anywhere(WORA).
6) Architecture neutral
It is not easy to write an application that can be used on Windows , UNIX and a Macintosh.
And its getting more complicated with the move of windows to non Intel CPU architectures.
Java takes a different approach. Because the Java compiler creates byte code instructions
that are subsequently interpreted by the java interpreter, architecture neutrality is achieved in the
implementation of the java interpreter for each new architecture.
7) Portable
Java code is portable. It was an important design goal of Java that it be portable so that as
new architectures(due to hardware, operating system, or both) are developed, the java
environment could be ported to them.
In java, all primitive types(integers, longs, floats, doubles, and so on) are of defined sizes,
regardless of the machine or operating system on which the program is run. This is in direct
contrast to languages like C and C++ that leave the sized of primitive types up to the compiler
and developer.
Additionally, Java is portable because the compiler itself is written in Java.
8) Dynamic
9) Interpreted
We all know that Java is an interpreted language as well. With an interpreted language such
as Java, programs run directly from the source code.
The interpreter program reads the source code and translates it on the fly into computations.
Thus, Java as an interpreted language depends on an interpreter program.
The versatility of being platform independent makes Java to outshine from other languages.
The source code to be written and distributed is platform independent.
Another advantage of Java as an interpreted language is its error debugging quality. Due to
this any error occurring in the program gets traced. This is how it is different to work with Java.
For all but the simplest or most infrequently used applications, performance is always a
consideration for most applications, including graphics-intensive ones such as are commonly
found on the world wide web, the performance of java is more than adequate.
11) Multithreaded
Writing a computer program that only does a single thing at a time is an artificial constraint
that we?ve lived with in most programming languages. With java, we no longer have to live with
this limitation. Support for multiple, synchronized threads is built directly into the Java language
and runtime environment.
Synchronized threads are extremely useful in creating distributed, network-aware
applications. Such as application may be communicating with a remote server in one thread
while interacting with a user in a different thread.
12) Distributed.
Java facilitates the building of distributed application by a collection of classes for use in
networked applications. By using java?s URL (Uniform Resource Locator) class, an application
can easily access a remote server. Classes also are provided for establishing socket-level
connections.
First Program
Lets look at how to save the file, compile and run the program. Please follow the steps given
below:
Open notepad and add the code as above.
Save the file as : SimpleProgram.java.
Open a command prompt window and go o the directory where you saved the class.
Assume its D:\.
Type ' javac SimpleProgram.java ' and press enter to compile your code. If there are no
errors in your code the command prompt will take you to the next line.( Assumption : The path
variable is set).
Now type ' java SimpleProgram' to run your program.
You will be able to see ' Simple Test Program ' printed on the window.
C : > javac SimpleProgram.java
C : > java SimpleProgram
Simple Test Program