- 论坛徽章:
- 0
|
- #!/usr/bin/perl
- use warnings;
- use strict;
- use threads;
-
- #join()函数等特线程退出并取得它的返回值
-
- sub myfunction{return ('a', 'b', 'c', 'd');}
- my ($thread) = threads->create(\&myfunction);
- #my $thread = threads->create(\&myfunction);
- print "$thread\n";
- my @return_values = $thread->join();
- print "@return_values"."\n";
复制代码 如上代码,为什么$thread 时$thread->join()只返回myfunction中的最后一个列表元素
当($thread)时,会返回a,b,c,d列表,这个要怎么理解?
能解答下吗?
谢谢。- root@Perl:~/perlstu/threads# perl thread_join函数返回值与说明.pl
- threads=SCALAR(0x1dfc5a8)
- d
- root@Perl:~/perlstu/threads# fg
- vim thread_join函数返回值与说明.pl
- [1]+ Stopped vim thread_join函数返回值与说明.pl
- root@Perl:~/perlstu/threads# perl thread_join函数返回值与说明.pl
- threads=SCALAR(0x25fe520)
- a b c d
复制代码 |
|