by @kodeazy

What are the features of Java?

Home » java » What are the features of Java?

Features of Java

Object Oriented
Robust
Platform Independent
Multi Threading

Object Oriented

In java every thing is object. i.e in java we organize our software as group of objects.

Robust

Java has various features like automatic garbage collector etc which removes unused objects.

Platform Independent

Platform independent means we can run a .class file of one system into another JVM enabled system.

Multi-Threading

Can run mutliple threads at same time so that it reduces the processing time.

Simple

Java is easy to learn and it syntax is simple.