Sun Tech Days Turns Ten
Thursday January 31, 2008
Sun Tech Days is a travelling road-show that has been ongoing for the past ten years. The concept is to provide technical education in Java Technology and Solaris products. ... Read More
What's a Primitive Wrapper Class?
Tuesday January 29, 2008
It may sound like a course on the basics of gift-wrapping, but a primitive wrapper class is altogether different. If you recall your primitive data types (I know you ... Read More
A New Reserved Word: enum
Wednesday January 23, 2008
So, I am happily coding along one day when I type in the following code:
Enumeration enum = myShoppingList.elements(); enum.hasMoreElements();)
// and so on and so forth
I compile my code and I ... Read More
Java Array or Vector: What's the Difference?
Monday January 21, 2008
Arrays and Vectors in Java are quite similar. They both represent a collection of similar items. For example, a good usage of an array would be a variable ... Read More
Great Sites for the Java Newbie
Thursday January 17, 2008
If you have ever done a search for Java tutorials or introduction to Java, I have little doubt that your search was fruitless. In fact, there are thousands of ... Read More
Java Constants
Tuesday January 15, 2008
There are two things in life that are constant.... death and taxes. In Java, unlike in life, you have control over what is constant and what is not. ... Read More
JavaOne Conference for the Budget-Conscious Developer
Friday January 11, 2008
The 2008 JavaOne conference will be held at San Francisco's Moscone Center on May 6 through May 9, 2008. The cost to attend the event may be prohibitive for ... Read More
Word-of-the-Week: Exception Handling
Tuesday January 8, 2008
Exceptions are issues that could cause your program to go haywire, such as a missing file or a null pointer. Exception handling is the process by which you can ... Read More
A New Year, A New Java Certification?
Thursday January 3, 2008
The new year is here, and it's resolution time. I have never been good at keeping resolutions, especially those weight loss ones, but one year I actually did manage ... Read More
Java Strings: Tricky Business
Tuesday January 1, 2008
Java String objects are somewhat quirky. They are immutable, meaning they cannot be changed, and String literals are interned automatically by the Virtual Machine in a special memory area ... Read More
