Features Of Java Programming Language.
Features Of Java |
Features Of Java Programming Language
- Simple
- Object Oriented
- Compiler And Interpreter
- Platform Independent
- Secured Programming Language
- Multithreaded
- Ruble And Strong Programming Language
- Distributed
- Support Exception Handling.
Simple
- Java is a simple programming language all the syntax in java based on c and c++.
- Java has removed many complicated features explicit pointers, operator overloading, etc.
- 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. Is a methodology in which application program can be develop using classes and object so it is simplifies software development and maintenance by providing some rules.
- Basic concepts of OOPs are:
- Class.
- Object.
- Inheritance.
- Polymorphism.
- Abstraction.
- Encapsulation.
Compiler And Interpreter
Java programming language has the fechar of both Compiler and Interpreter. Java source code firstly compile by the compiler and converter in to bytecode and this bytecode is converted into machine code by java Interpreter (JVM).
Java is platform independent which is write once run anywhere language. Java program can be executed on multiple platforms, for ex : windows, linux, mac/os, etc.
Platform Independent |
Secured Programming Language
- Java is a secured programming language it is a virus free programming language.
- Java is a secured be couse no explicit pointer.
- Java programs run inside a virtual machine.
- Class loader in java part of java runtime environment which is load java class in to the java virtual machine.
- Bytecode verifier checks the code fragment and access rights to objects.
Comments
Post a Comment