Wednesday, 11 March 2009

Jave Code

Java Code Home
Fundamentals of Java Language

Here we present few Key features of Java platform which have made it so popular around the world
  • Java is a simple language to learn as it uses familiar syntax of C/C++
  • It implements certain things in a cleaner way (Memory management) and leaves out some confusing aspects of it's predecessors (eg. Multiple inheritence,Pointers)
  • It is completely Object oriented, everything in Java is inside classes
  • Programs written in Java are robust
  • Java supports multi threaded programming which enables programs to do multiple tasks simultaneously in an elegant manner
  • Java programs are platform independent.You can write a Java program once and be sure that it would run on any platform

Don't worry if certain things seem to be new ! We would get into details during the course of this tutorial.