Development

« Java »

Flash

.: Java :.


Main

Profile


Community

Links


Gaming

KOF

Java is a language developed by Sun Microsystems. The beauty of Java is that is multiplattaform which means that the same code will run on different machines and operating systems (i.e. Linux, Windows, Mac).

Java is object-oriented just like C++ but unlike C++, java does not allow you to directly manage the computer memory which makes it perhaps easier to program; however, sometimes in order to do little "tricks", manual memory management is required. In any case, Java is actually a nice language, it's worth to learn it.

File

Description

Download


Java SDK

This is the file you should be looking for if you want to start compiling Java programs. To write source code you may use any text editor you wish (i.e. Notepad) but you must use this in order to compile it. I do not have the file in my servers because of its size (~40MB) so please go to their homepage and download it.
Java Homepage

N/A

 

Tic-Tac-Toe

A simple tic-tac-toe game written in Java. There isn't much to it and the computer doesn't even have AI. It's a nice and simple example of "abstract" and "inheritance"use in Java though.

 

Drawing

This program is a simple panel in which rectangles and circles can be created, moved, and resized. It ilustrates the use of "repaint()" as well as layouts in Java.