Java

From FUKTwiki

Jump to: navigation, search

Java is a programming language.

It is:

  • Interpreted, which means it is not normally compiled into machine code.
  • Garbage collecting, which means it allocates memory and creates and destroys objects automatically.
  • Widely used.
  • Object-oriented.
  • Platform-independent.

[edit] Example Code

// This program has a bug; it can not print unicode characters.
 
public class HelloWorld{
    public static void main(String[] args){
        System.out.println("Hello world!");
    }
}
There is an article about this subject on Wikipedia, the free online encyclopedia.
There is a book about this subject in Wikibooks, the open-content textbooks collection.

[edit] Links

Personal tools