Java Tutorials - Improve your understanding of Java and JSP Languages
Welcome to the Java tutorial pages on Softwaresourcer.com - here you can find tutorials, help and information on Java and related languages from all over the internet. If you have any questions about Java programming or would like Java Development done for your company please complete ourfree IT quotes form. If you are a company who takes on Java projects and would like to receive leads from people looking for Java or other work please complete ourIT suppliers partner form.
Class of the Month: JDK 1.4 Supports Regular Expressions
Regular expressions are a useful programming tool. The fact that Java now natively supports them simplifies many programming tasks that used to require cumbersome code...
Conditionals
Conditionals are very important in programming. I'll give you an example. Under one condition, you want to add something to a number. Under another condition, you want to subtract...
Data Structures in Java: Part 8, The Comparable Interface, Part 2
Baldwin shows you why the elements stored in a TreeSet collection need to be references to objects instantiated from a class that implements the Comparable interface, and briefly discusses an alternative approach using the Comparator interface...
Data Structures in Java: Part 9, The Comparator Interface, Part 1
Baldwin discusses and illustrates the use of the Comparator interface. The sorting order established by a Comparator may be different or may be the same as the natural order. A Comparator can be used to establish a sorting order for objects that don't hav...