Tutorial search

Tutorials
Stuff
Affiliates

Photoshop Templates


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

View all templates

Static Nested Classes - Java tutorial


A static nested class is a regular class defined inside of a package level class or inside of another static nested class. They are actually defined inside the body of the parent class, not only in the same file.
Category: Java tutorials - Difficulty:

More cool Java tutorials:



Desktop integration with Java 6
Desktop integration with Java 6
Java 6 tries hard to make Java applications easier to integrate in the desktop environment of various platforms. One of such welcome attempts is the new java.awt.Desktop class adapted from JDIC (JDesktop Integration Components).
Category: Java tutorials > Swing - Difficulty:
Quick Java programming with FESI
Quick Java programming with FESI
In the real world of everyday computing (and development), there are many situations where "whipping up a Java program" to perform a task is either impractical or too time consuming. This article takes you into the underground world of FESI (Free EcmaScript Interpreter), where deploying the Java language in a quick-and-dirty fashion is the norm rather than the exception. Article includes code snipets.
Category: Java tutorials - Difficulty:
Using operators
Using operators
Understand assignment operators.
Category: Java tutorials - Difficulty:
Robust Java Benchmarking: Statistics and Solutions
Robust Java Benchmarking: Statistics and Solutions
Program performance is always a concern, even in this era of high-performance hardware. This article, the second in a two-part series, covers the statistics of benchmarking and offers a framework you can use to benchmark Java code ranging from self-contained microbenchmarks to code that calls a full application.
Category: Java tutorials - Difficulty:
Declaring classes, variables, and methods
Declaring classes, variables, and methods
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: