← Back to All Languages
Object-Oriented

JAVA

Est. 1995
CreatorJames Gosling (Sun Microsystems)
ParadigmObject-Oriented • Class-based

A class-based, object-oriented language designed to have minimal implementation dependencies. Java's "write once, run anywhere" philosophy makes it popular for enterprise applications.

Hello World
1public class Hello {
2 public static void main(String[] args) {
3 System.out.println("Hello, World!");
4 }
5}