Short Hand If Else Statement

Submitted by GeePee on
Introduction: This tutorial page will talk about the short hand version of an if else statement. Important: I highly recommend you read through the If Else tutorial page before reading this tutorial. How is the short hand if else statement structured? The short hand version of an if else statement is used through a couple of symbols, here is the layout of the statement; Action (setting a variable, function or method, etc.) - condition - "?" - What to do if the condition is true - ":" - What to do if the condition is false. When is a

Return Keyword

Submitted by GeePee on
Introduction: Welcome! This tutorial page will teach you about the "Return" keyword in Java. What is a 'keyword'? A keyword is a word which already has a set/pre-defined action within Java. For example; public is a keyword which allows other classes to access the public variable or function/method. So, what does the "Return" do? Return is used to send a value back from a method or function to the place where it was called. The type of value to return depends on the type of method the return keyword is encased in.

Philippines Payroll Calculator

Submitted by nostradamus1566 on
PayCal.ocx is a simple payroll component. It is designed for the Philippines Payroll market. There is a simple Vb6 test project included to try out the component. There is also an Excel spreadsheet project to demonstrate it as well. If you examine the source code of the test project it will help you to use this component in your own project. Register the component on your computer and add it to

Do-While Statements

Submitted by GeePee on
Introduction: This page will teach you how to use the Do-While statements in Java. Important! It is fairly important you understand the While Statement before reading this tutorial page. It can be found on the main Java Tutorial Thread page. What is a Do-While Statement? A Do-While Statement is very similar to a While Statement, with one exception.

For Each Loops (Iteration)

Submitted by GeePee on
Introduction: Welcome, this page will teach you how to create a For Each Loop in Java. What is a For Each Loop? A For Loop is very similar to a For Loop within Java except it only requires two arguments and instead of referring to the current value of the loop through the index, we have an actual item. When are For Each Loops used? For Each Loops are used for iterating through a list of values or items and performing an action on each of them individually.

Comments

Submitted by GeePee on
Introduction: Welcome to a tutorial on the use of comments within Java. What are comments? Comments are just like the standard definition of comments anywhere in the world, they are used to explain something within the midst of the code. Comments are not read by Java and as such do not affect the program running. When are comments used? Comments are normally used to either make a note for the developer their self so they know where they need to go back to, or bookmark a specific location within a Java file.