No. | Description | Links |
1 | We start of looking at Java by trying to understand some fundamental concepts about how Java works. With this knowledge we can better understand what is required to setup a Java development environment.
Since a lot of things that work with Java begin with J, this also servers as an introduction to all things in the key of J
Java Tutorial Duration: 13 min |  |
2 | In this tutorial we start off looking at how to setup NetBeans and create a basic Java Hello World application. NetBeans can be obtained from the download link to the left of the screen. NetBeans comes in different bundles, for Java programming you can get a bundle which includes the latest JDK
Java Tutorial Duration: 9 mins |  |
3 | Sometimes there is the need to develop Java software using only the Java Development Kit (JDK). In this tutorial we will look at how to write and build a basic Hello World application using only the JDK and notepad.
Generally with the functionality available in IDEs like NetBeans and Eclipse, you should not think about developing full blown applications with the JDK and a basic editor like notepad
Java Tutorial Duration: 12 mins |  |
4 | In this tutorial we look at the Eclipse side. We look at how to set ourselves up with Eclipse. This tutorial assumes that you completed the steps in the earlier tutorial on installing the JDK because that is a requirement. This tutorial outlines a Hello World application using the Eclipse Java Integrated Development Environment (IDE)
Java Tutorial Duration: 10 mins |  |
5 | Variables are needed in all languages. We introduce the concept of what a variable is in this tutorial as we look at the Primitive Data Types in Java. Also we will investigate type casting between the various types and highlight some potential consequences of type casting.
Java Tutorial Duration: 19 mins |  |
6 | In this video we will be taking a look at math operations. Basic math is needed in most programs so take a moment to get caught up. For users interested in more advanced functionality, we do a quick review of what the math package contains.
Java Tutorial Duration: 18 mins |  |
7 | In this tutorial we start a discussion of flow control, the concept of controlling which pieces of your code get executed based on conditions.
The If construct is covered.
Java Tutorial Duration: 12 mins |  |