建立一个线程循环读取,是怎么做的?(100分)

  • 主题发起人 主题发起人 jasph77
  • 开始时间 开始时间
J

jasph77

Unregistered / Unconfirmed
GUEST, unregistred user!
如题:
是不是在线程的RUN里面 写一个死循环啊!~
 
有人刚教过我
with not terminated do

结束线程用
terminate
就好了
 
结束线程用
terminate


具体怎么做哦! 是不是在主线程重 terminate = true?
 
while not terminated do

还是with not terminated do
????????
 
是的,你想结束的时候就结束啊,是在主线程中
 
while not terminated do

还是with not terminated do
????????
大家都好好看看书吧
从最基本的语法看起

不要一口吃成胖子
 
想退出,在线程外赋值fThreadExit:=True;
procedure TCommThread.Execute;
begin
fThreadExit:=False;
While (not fThreadExit) do begin
..
end;
end;
 
to muhx
语法问题 不要你来说!
我也做了2年DELPHI了
 
最好在线程里用消息循环。原理说不明白。实践证明的。
 
while not terminated do
begin
end;
 
谢谢 各位了
 
后退
顶部