Experimental forum for "Technology" discussions (computers, cameras, etc).

Java Programming Language

Postby Bob Kuczewski » Sun Jan 11, 2015 5:27 pm

The Java programming language ("Java") has been one of the most popular programming languages for many years now.

One of Java's greatest features is its cross-platform capability.

The same exact Java binary file can run on many different operating systems:

Operating_Systems_w.png
Operating_Systems_w.png (65.24 KiB) Viewed 3737 times


... and many different microprocessors:

Processors_w.png
Processors_w.png (166.52 KiB) Viewed 3737 times


Java accomplishes this by defining a "Virtual Machine" that operates on its own set of instructions (called bytecodes). This "Virtual Machine" is then written for each target Operating System / Processor so that it can read the bytecodes and execute the program.

This is particularly important for applications that need to be shared by people over the internet who may be using different operating systems on different processors.

Here's one of the simplest Java programs that simply prints out the message "Hello World!!":

Code: Select all
import java.io.*;

public class hello {
  public static void main ( String[] args ) {
    System.out.println ( "Hello World!!" );
  }
}


The code is very similar to another popular programming language called "C":

Code: Select all
#include <stdio.h>

int main ( int argc, char **argv ) {
  printf ( "Hello World!!\n" );
}


Now programming isn't for everyone. It can be tedious work. But for those interested in making a computer do exactly what you want there's no better alternative.

So far, I've used Java on our US Hawks forum to make animations (like the circling Little Hawk):

LiteHawk_f128_20ms.gif
LiteHawk_f128_20ms.gif (194.94 KiB) Viewed 3733 times


... and for support programs (like this US Hawks Voting Machine):



I suspect we'll find many other uses, so anyone interested in learning Java is encouraged to post here and maybe we can get a Java Programming class started.
Join a National Hang Gliding Organization: US Hawks at ushawks.org
View my rating at: US Hang Gliding Rating System
Every human at every point in history has an opportunity to choose courage over cowardice. Look around and you will find that opportunity in your own time.
Bob Kuczewski
User avatar
Contributor
Contributor
 
Posts: 8381
Joined: Fri Aug 13, 2010 2:40 pm
Location: San Diego, CA

Forum Statistics

Who is online

Users browsing this forum: No registered users and 9 guests

Options

Return to Technology Forum