DOCUMENT RESOURCES FOR EVERYONE
Documents tagged
Technology Java scjp-part1

1. Java certification success, Part 1: SCJP Presented by developerWorks, your source for great tutorials ibm.com/developerWorks Table of Contents If you're viewing this…

Documents Java Notes

Reading Command Line Arguments (i) Common way class ReadCmdLineArgs { public static void main(String[] args) { System.out.println("Command Line Args:"); System.out.println("------------------");…

Documents java programing Test

What will be the output of the program? class MyThread extends Thread { public static void main(String [] args) { MyThread t = new MyThread(); Thread x = new Thread(t); x.start();…