- 论坛徽章:
- 0
|
小弟初学perl的多线程,边看大骆驼边写了几行试试,发现调用join后子线程仍然继续运行?请高手指点一下!注:win32系统
是否对join理解有误?还是代码问题?
use Thread;
print "新建线程!\n";
my $t=Thread->new(\&hello,,);
sleep(10);
print"收割线程!\n";
my $result=$t->join();
print"$result\n";
print"testing ok\n";
sub hello
{ my $sum=0;
while(1)
{
sleep(1);
print"$sum hello,first thread program!\n";
$sum++;
if($sum>10){last;}
}
}
执行结果如下:
新建线程!
0 hello,first thread program!
1 hello,first thread program!
2 hello,first thread program!
3 hello,first thread program!
4 hello,first thread program!
5 hello,first thread program!
6 hello,first thread program!
7 hello,first thread program!
8 hello,first thread program!
收割线程!
9 hello,first thread program!
10 hello,first thread program!
testing ok |
|