Introduction To Java Programming
Introduction To Java Programming
Platform independent
Unlike many other programming languages including C and C++ when Java is
compiled, it is not compiled into platform specific machine, rather into platform
independent byte code. This byte code is distributed over the web and interpreted by
virtual Machine (JVM) on whichever platform it is being run.
Reusability of Code
Emphasis on data rather than procedure
Data is hidden and cannot be accessed by external functions
Objects can communicate with each other through functions
New data and functions can be easily added.
Java has powerful features.
The following are some of them:1-Simple
2-Reusable
3-Portable (Platform Independent)
4-Distributed
5-Robust
6-Secure
7-High Performance
8-Dynamic
9-Threaded
10-Interpreted
Java is Distributed
With extensive set of routines to handle TCP/IP protocols like HTTP and FTP java can
open and access the objects across net via URLs.
Java is Multithreaded
One of the powerful aspects of the Java language is that it allows multiple threads of
execution to run concurrently within the same program A single Java program can
have many different threads executing independently and continuously. Multiple Java
applets can run on the browser at the same time sharing the CPU time.
Java is Secure
Java was designed to allow secure execution of code across network. To make Java
secure many of the features of C and C++ were eliminated. Java does not use
Pointers. Java programs cannot access arbitrary addresses in memory.
Garbage collection
Automatic garbage collection is another great feature of Java with which it prevents
inadvertent corruption of memory. Similar to C++, Java has a new operator to
allocate memory on the heap for a new object. But it does not use delete operator
to free the memory as it is done in C++ to free the memory if the object is no longer
needed. It is done automatically with garbage collector.
Java Applications
Java has evolved from a simple language providing interactive dynamic content for
web pages to a predominant enterprise-enabled programming language suitable for
developing significant and critical applications. Today, It is used for many types
of applications including Web based applications, Financial applications, Gaming
applications, embedded systems, Distributed enterprise applications,
mobile applications, Image processors, desktop applications and many more. This
site outlines the building blocks of java by stating few java examples