Posts by Aleatorio • 41 points
1 post
-
4
votes1
answer616
viewsQ: Thread problem
public class ThreadTest implements Runnable { private String word; private long time; public ThreadTest(String word,long time){ this.word = word; this.time = time; } public void run() { try {…