Java was designed fro the easiness of the programmer to learn and use effectively. If you have some knowledge in C or C++ it is very easy to understand Java as it derived its features fro both C and C++.
Object Oriented
Java is an Object Oriented programming language. Although influenced by its predecessors, Java was not designed to be source-code compatible with any other language. The object model in Java is simple and easy to extend, while simple types, such as integers, are kept as high performance non objects.
Robust
Java programs are robust. The ability to create robust programs, programs that run in a wide verity of environment was given high priority in the design of Java.
At the same time, Java avoids the burden of errors. Because Java is a strictly typed language, it checks errors at compile time and during run-time.
In Java the task of memory management is done automatically. Java allocates and deallocates memory by itself.
In Java the Run-time exceptions are handled in an organized Object Oriented exception handling technique.
Multi-threaded
No comments:
Post a Comment