Thread Groups Java / General Development
This tutorial describes: ThreadGroup Class, The ThreadGroup Tree, Grouping Threads, Memory Leak With Unstarted Threads.
Threads Java / General Development
This tutorial describes: What Is a Thread, Creating Java Threads, Using Runnable Interface, CPU Time Sharing, Sharing Data, Terminating Threads.
JT-Java Trainer Java / General Development
Java Trainer (JT) is for students who intend to learn Java , C#(or C++ for that matter). It is a simple programming system in a web page (no install), with a language close to C and Java, but cut-down.
Determine the available memory in Java Java / General Development
This tutorial will give you a brief walkthrough on Java memory use in the sandbox and show how to use the Runtime class to discover the amount of memory available to your Java applet or application.
Interfaces in Java Java / General Development
In Java, a class can have at the most one immediate superclass. Multiple inheritance, where a class has more than one superclass, is not allowed in Java. However, one cannot ignore the importance of multiple inheritance because a large number of real-life applications require the use of multiple inheritance. Java provides an alternative approach to support multiple inheritance by introducing a new data type known as interfaces. Although a class cannot inherit multiple classes, it can implement more than one interface.
Sun Certification Project Overview Java / General Development
In this chapter, we introduce the sample application, which will serve as a wellspring for the myriad of topics required for developer certification. The sample project hasa structure and format similar to the one you will encounter during the Sun Certified Java Developer (SCJD) exam, and it will demonstrate each of the essential concepts necessary for successful completion of the certification project.
Integrating Struts Framework and EJB Java / General Development
The usage of enterprise java beans in combination with struts is the goal of this tutorial. We create an EJB project and use the business processes (methods) later in the Struts application.
Junit testing in Eclipse Java / General Development
JUnit is a simple Java testing framework to write tests for you Java application. This tutorial gives you an overview of the features of JUnit and shows a little example how you can write tests for your Java application.