Shrihan De Mel

Greenhorn
+ Follow
since Jan 15, 2007
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Shrihan De Mel

You are not even invoking a Thread..

calling run of the Runnable Target will not create a new thread of execution..

you do this...
Thread t=new Thread(nt1)
t.start()

and you should call the run direct if you wanna create a new thread...

hope help
hi

is there a difference between the format returned by System.currentTimeMillis() and Date.getTime()

to further clarify, can we directly compare two variables that possess values from each one of the above methods, as if both of them are assigned from one of the above ways

your help if much appreciated

Shrihan
18 years ago