1.Perl 多線程:Threads


詳情可查看:

1 perldoc threads

調用線程的方法:

 1 $thr = threads->create(FUNCTION, ARGS)
 2    #This will create a new thread that will begin execution with the
 3    #specified entry point function, and give it the *ARGS* list as
 4    #parameters. It will return the corresponding threads object, or
 5    #"undef" if thread creation failed.
 6    #FUNCTION為函數, ARGS為函數的參數
 7  
 8    # *FUNCTION* may either be the name of a function, an anonymous
 9    # subroutine, or a code ref.
10  
11         my $thr = threads->create('func_name', ...);
12         #用引號調用
13             # or
14         my $thr = threads->create(sub { ... }, ...);
15         #用匿名函數方式調用
16             # or
17         my $thr = threads->create(\&func, ...);
18         #用&的方式調用

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM