Java reference

From FreeGameDevWiki

Jump to: navigation, search

Java is an object-oriented, high level, and portable program language. Its popularity stems from the support for deployment for Java applications through the web (as Applets) and for mobile devices. The official development kit is provided by Sun Microsystems under a limited license. Sun, along with the Java community at large, has tried to remedy this by open sourcing the JDK in the OpenJDK project.

Introduction to Java

Features of Java

Hello World

// Hello World in Java
class HelloWorld{
     public static void main(String[] args){
          System.out.println("Hello World!");
     }
}
Personal tools