- 论坛徽章:
- 0
|
1,use Thread qw/async yield/;是什么意思?
Re: Programming Perl 11.2 Creating Modules.
use Bestiary qw(ram @llama); # Import the ram function and @llama array
use Thread qw/async yield/; # qw/async yield/ is a list of variable(s), function(s), etc
2,$done这个变量如何被改变?我觉得unless那段应该不会运行
$done is a global variable here, if you want to modify a variable by different threads, you can study CPAN Thread::Shared
my $thr = threads->create({'context' => 'list'}, \&foo);
{'context' => 'list'}: a referent to anonymous hash.
Same thing like below:
my %hash = ('context'=>'list');
my $hashref = \%hash;
my $thr = threads->create($hashref, \&foo); |
|