Buzzword in Java - thejavaconceptspart
Buzzwords in Java
A list of Most important features of Java language is given as below
- Simple
Java is very easy to learn and it's syntax is simple, clean and easy to understand.There is no need to remove unreferenced objects because there is an Automatic Garbage Collection in Java.
- Object-oriented
Java is an object oriented programming language. Everything in Java is an object. Basic concepts of OOPS are:-
- Object
- Class
- Inheritance
- Polymorphism
- Abstraction
- Encapsulation
- Portable
Java is portable" refers to the SE version. It means that you can run java bytecode on any hardware that has a compliant JVM
- Platform Independent
Java is platform independent because it is different from other language like c, c++ etc which can compiled into platform specific machine while Java is Write once, run anywhere language.
- Secured
Java is secured.Java is best known for its security.With Java We can develop virus-free systems.
- Robust
Robust Simple means strong.There is lack of pointers that avoid security problem
- Architecture neutral
Java is architecture neutral because there are no implementation dependent features for example:- The Size of Primitive type is fixed.
- High Performance
Java is faster than other traditional interpreted programming languages because Java bytecode is close to a native code
- Multithreaded
A thread is like a separate program, executing concurrently. We can write Java program that deal with many tasks at once by defining multiple threads.
- Distributed
Java is distributed because it facilitate users to create distributed application in Java.
- Dynamic
Java is dynamic language. It supports dynamic loading of classes. It means classes are loaded on demand.
Comments
Post a Comment
Remember to keep Comments Respectfully