线程怎么不能停止??

tondayong1981 2005-05-22 06:37:48
为什么stop按纽停止线程不能停止??
//TimeThread.java
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;


public class TimeThread extends JFrame
{
public static JTextField textField;
private JButton button1,button2;
private boolean start=true;
Thread t;
int flag=1;
public TimeThread()
{
super("Time Thread test");
Container c=getContentPane();
c.setLayout(new FlowLayout());
textField=new JTextField(10);
textField.setEditable(false);
c.add(textField);
button1=new JButton("start");
button2=new JButton("stop");
c.add(button1);
c.add(button2);
TimeThread1 thread=new TimeThread1();
t=new Thread(thread);
button1.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
if(start && flag==1)
{
t.start();
start=false;
}
else
{
t.resume();
start=false;
}
}
});
button2.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
if(Thread.currentThread().getName().equals("Thread-1"))
//if(t.getName().equals("Thread-0")) //here why wrong
{
t.suspend();
start=true;
flag++;
}
}
});

setSize(180,150);
show();
}


public static void main(String[] args)
{
TimeThread t=new TimeThread();
t.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}

}

//TimeThread1.java
import java.util.*;
public class TimeThread1 implements Runnable
{

public void run()
{
try
{
while(true)
{
Thread.sleep(1000);
Date date=new Date();
String s=date.getHours()+":"+date.getMinutes()+":"+date.getSeconds();
TimeThread.textField.setText(s);
}
}
catch(Exception e){}
}

}
...全文
284 11 打赏 收藏 转发到动态 举报
写回复
用AI写文章
11 条回复
切换为时间正序
请发表友善的回复…
发表回复
tondayong1981 2005-06-23
  • 打赏
  • 举报
回复
编译原理实验题目的文法定义

P->main(){Slist}
Slist->S;Slist|S|{Slist}
S-> V=E|if B then Slist else Slist
|return(E) |Decl|Funcd|Callf
E->E+T|T
T->T*F|F
F->(E)|V|NUM
B->E>E|E<E
Decl->I
int Vlist
Vlist->V,Vlist|V
Funcd->V(Param){Slist}
Param->Decl
Callf->V(Vlist)

其中:
V代表字母开头的,后跟字母和数字的变量名。
NUM代表整数。

编译原理实验题目
一、 词法分析程序
要求:能够处理文本格式的,符合编译原理实验语法的源程序。
输出形式为:二元组:(单词种类,单词内码值)
或三元组:(单词种类,单词内码值,源程序中的行号)

******注:单词种类统一分为:
单词符号 单词种类
任意变量名 0
( 1
) 2
{ 3
} 4
; 5
= 6
+ 7
* 8
> 9
< 10
, 11
整型常数 20
int 21
if 22
then 23
else 24
return 25
出错 100


二、 语法分析程序
要求:能判别正确的源程序;对错误的源程序,尽量指出错误类型(参见各种分析方法中的出错处理一节)。

三、 编程工具: 任选自己熟悉的一种。

daocaoren0 2005-06-10
  • 打赏
  • 举报
回复
窗口事件也是一个线程。
你如果这个程序没有窗体,你用字母来控制启动和停止,你的if(Thread.currentThread().getName().equals("Thread-1"))应该可以实现的。
DanielYWoo 2005-06-10
  • 打赏
  • 举报
回复
>>我想能清楚为什么我在其他的线程写if(Thread.currentThread().getName().equals("Thread-1"))
旧行,为什么这个不行

因为你的县城的名字不对,用Thread(String name)给县城一个名字
daocaoren0 2005-06-06
  • 打赏
  • 举报
回复
虽然实现了,但是你的程序里用到了好多depracated的方法^_^这是不好的。
daocaoren0 2005-06-06
  • 打赏
  • 举报
回复
如果你非要这样实现,那么你可以这样改来实现:
if(Thread.currentThread().getName().equals("AWT-EventQueue-0"))
就可以实现:
按了“Start”按钮时间开始走动,按了“Stop”时间显示停止。
DanielYWoo 2005-06-06
  • 打赏
  • 举报
回复
不要用resume/stop,已经被depracated了
简单点,你可以中断thread,需要重新启动的时候,再重新new一个thread
复杂点,你可以设置一个状态开关变量,一旦被设置为‘暂停’,就进入一个循环,每此循环sleep 3秒,然后看看新的状态,如果新状态是‘继续’,那就跳出循环,如果是‘结束’,那就return了。
daocaoren0 2005-06-04
  • 打赏
  • 举报
回复
Z_Beginner(初学者)给你说的stop()是自己写的一个方法。你看清了哦^_^

你说的死掉的stop()是你调用了Thread类的stop()方法。而且这个方法是不推荐使用的方法。
tondayong1981 2005-06-04
  • 打赏
  • 举报
回复
实际我想测试if(Thread.currentThread().getName().equals("Thread-1"))的用法,为什么放上去就不对??
Z_Beginner 2005-05-22
  • 打赏
  • 举报
回复
这样喃?
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.util.*;

public class TimeThread extends JFrame
{
public static JTextField textField;
private JButton button1,button2;
private boolean start=true;
Thread t;
int flag=1;
public TimeThread()
{
super("Time Thread test");
Container c=getContentPane();
c.setLayout(new FlowLayout());
textField=new JTextField(10);
textField.setEditable(false);
c.add(textField);
button1=new JButton("start");
button2=new JButton("stop");
c.add(button1);
c.add(button2);
TimeThread1 thread=new TimeThread1();
t=new Thread(thread);
button1.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
if(start && flag==1)
{
t.start();
start=false;
}
else
{
t.resume();
start=false;
}
}
});
button2.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
t.suspend();
start=true;
flag++;
}
});

setSize(180,150);
show();
}


public static void main(String[] args)
{
TimeThread t=new TimeThread();
t.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}

}
class TimeThread1 implements Runnable
{
public void run()
{
try
{
while(true)
{
Thread.sleep(1000);
Date date=new Date();
String s=date.getHours()+":"+date.getMinutes()+":"+date.getSeconds();
TimeThread.textField.setText(s);
}
}
catch(Exception e){}
}

}
tondayong1981 2005-05-22
  • 打赏
  • 举报
回复
用了stop线程旧死掉了,我只是想让他暂停,大概if(Thread.currentThread().getName().equals("Thread-1"))错了,怎么改
我用if(Thread.currentThread()==t)
好象也不对啊??
Z_Beginner 2005-05-22
  • 打赏
  • 举报
回复
while(true)
一旦开始就一直执行。
线程类中加一个stop()
void stop()
{
flag=false;
}

else
{
t.resume();
start=false;
}
改为
else
t.stop();

while(flag)
{
....
}

62,612

社区成员

发帖
与我相关
我的任务
社区描述
Java 2 Standard Edition
社区管理员
  • Java SE
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧