--
EliteHussar
------------------------------------------------------------------------
EliteHussar's Profile: http://forums.novell.com/member.php?userid=87159
View this thread: http://forums.novell.com/showthread.php?t=412534
Classes are the single most important feature of Java. Everything in
Java is either a class, a part of a class, or describes how a class
behaves. Although classes will be covered in great detail in section
four, they are so fundamental to an understanding of Java programs that
a brief introduction is going to be given here.
'Java Tutorial 2 – Classes and Objects: A First Look'
(http://learnbyexamples.org/java/java-tutorial/java-tutorial-2-classes-and-objects-a-first-look.html)
Java isn’t as redundant as perl, but there’s still almost always more
than one way to write any given program. The following program produces
identical output to the Fahrenheit to Celsius program in the preceding
section. The main difference is the for loop instead of a while loop.
'Java Tutorial 3 – The For Statement and Operators'
(http://learnbyexamples.org/java/java-tutorial/java-tutorial-3-the-for-statement-and-operators.html)