嗨,我想要闲聊, 但我有一些问题,我希望每一秒X钱将添加到玩家的货币 并在Jframe中显示值 我知道使用Threads但我不知道如何。
package idle;
类MyThread扩展了线程{
int cash;
public MyThread(String name) {
super(name);
}
public void run() {
while(true){
try {
cash++;
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(getName()+ " " + cash);
}
答案 0 :(得分:-1)
public MyThread(String name, ThreadContext context) {
super(name);
this.context = context;
}
类ThreadContext
public class ThreadContext {
private int cash;
}