0
JAVA Tutorial II
Java is an object-oriented programming language developed by Sun Microsystems and released in 1995. Modelled after C++, the Java language was designed to be small, simple, and portable across platforms and operating systems, at both the source...
Threads in java
A small program that shows THREADS in action.
public class TwoThread extends Thread {
public void run() {
for (int i = 0; i < 10; i++) {
System.out.println(“New thread”);
}
} public static void main(String[] args) {
TwoThread...
JAVA Simple Tutorial Part-I
Introduction
Java is an object-oriented programming language developed by Sun Microsystems and released in 1995. Modelled after C++, the Java language was designed to be small, simple, and portable across platforms and operating systems, at...
JAVA Tutorial
EXCEPTION HANDLING IN JAVA
Run time errors are called as exceptions. Java provides a way to deal with these run time errors. A run time error can occur due to illegal operation such as an integer divided by zero. Java has a class called throw...
Page 1 of 11
