old threads emerge still after computer restart?!! how to delete?

i modify code, save it and restart computer but still when i compile and run the code the old version appears in gui and midi sounds of the program.

What is the reset command for deleting all threads, etc. or what is the problem and solution.

?

wondering

[279 byte] By [wonderful123a] at [2007-11-27 10:49:46]
# 1

When you kill a Java app all its threads terminate, so there's no way they can survive a computer shutdown!

My guess is that you're not recompiling your .java files, so you start your Java program with the old classes. Try deleting all .class files and recompile the whole project.

java_knighta at 2007-7-29 11:21:17 > top of Java-index,Java Essentials,Java Programming...
# 2

No java thread can survive rebooting, so it sound like the class files you are compiling probably aren't those you're running.

malcolmmca at 2007-7-29 11:21:17 > top of Java-index,Java Essentials,Java Programming...
# 3

thanks, problem now solved. i had forgotton accidentally wrong expression:

new something();

that caused the mess

wonderful123a at 2007-7-29 11:21:17 > top of Java-index,Java Essentials,Java Programming...
# 4

> thanks, problem now solved. i had forgotton

> accidentally wrong expression:

>

> new something();

>

> that caused the mess

... so in fact the project didn't compile and you were running the old classes, like I said.

java_knighta at 2007-7-29 11:21:17 > top of Java-index,Java Essentials,Java Programming...
# 5

or he restarted the wrong computer...

jwentinga at 2007-7-29 11:21:17 > top of Java-index,Java Essentials,Java Programming...
# 6

> or he restarted the wrong computer...

hahaha.....am sorry for laughin so loud..

but, swear a blastin joke!

passion_for_javaa at 2007-7-29 11:21:17 > top of Java-index,Java Essentials,Java Programming...