Tutorial search

Tutorials
Stuff
Affiliates

Cool Stuff




The fastest way to master the basics of Adobe Photoshop

Click here to find out how

Photoshop Templates


Featured Photoshop templates - professional ready to use designs for your next project.

View all templates

Declaring classes, variables, and methods - Java tutorial


Now let's look at ways we can modify classes, methods, and variables. There are two kinds of modifiers -- access modifiers and non-access modifiers. The access modifiers allow us to restrict access or provide more access to our code.
Category: Java tutorials - Difficulty:


More cool Java tutorials:



Tooling for Service Component Architecture
Tooling for Service Component Architecture
Learn the three functions of this Eclipse-based tool. First, the SCA assembly modeling function helps developers visualize and define the component architecture. Second, SCA transformation function transforms the assembly diagram into an SCA project structure and code skeleton. And third, the SCA implementation function helps developers code, test, and package the SCA project.
Category: Java tutorials > Development - Difficulty:
Finalization
Finalization
Java technology allows you to use the finalize() method to do the necessary cleanup before the garbage collector removes the object from memory.
Category: Java tutorials - Difficulty:
Java Certification Success, Part 2 : SCWCD
Java Certification Success, Part 2 : SCWCD
Sun Certified Web Component Developer (SCWCD) is one of most coveted certifications in the J2EE domain.
Category: Java tutorials - Difficulty:
Improve the performance of your Java code
Improve the performance of your Java code
Many algorithms are expressed most concisely as tail-recursive methods. Compilers can automatically transform such methods into loops and thereby improve program performance, but this transformation is not required by the Java language specification, so not all JVMs will perform it. This means that tail-recursive methods in the Java language can result in unexpectedly large memory usage. This article demonstrates that dynamic compilation maintains the language's semantics while static compilation often doesn't. Learn why this matters and get a bit of code to help you determine whether your just-in-time (JIT) compiler can transform tail recursion on code while preserving semantics.
Category: Java tutorials > Development - Difficulty:
Easing Configuration with Java
Easing Configuration with Java
Configuration can be a maintenance mess and add to a developer's burden. This article introduces a framework with which developers can define their application's configuration in terms of high-level interface.
Category: Java tutorials - Difficulty: