免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2389 | 回复: 1
打印 上一主题 下一主题

关于threads中的join返回值问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2015-12-13 03:31 |只看该作者 |倒序浏览
  1.    #!/usr/bin/perl
  2.    use warnings;
  3.    use strict;
  4.    use threads;
  5.    
  6.    #join()函数等特线程退出并取得它的返回值
  7.    
  8.    sub myfunction{return ('a', 'b', 'c', 'd');}
  9.    my ($thread) = threads->create(\&myfunction);
  10.   #my $thread  = threads->create(\&myfunction);
  11.   print "$thread\n";
  12.   my @return_values = $thread->join();
  13.   print "@return_values"."\n";
复制代码
如上代码,为什么$thread 时$thread->join()只返回myfunction中的最后一个列表元素
当($thread)时,会返回a,b,c,d列表,这个要怎么理解?
能解答下吗?
谢谢。
  1. root@Perl:~/perlstu/threads# perl thread_join函数返回值与说明.pl
  2. threads=SCALAR(0x1dfc5a8)
  3. d
  4. root@Perl:~/perlstu/threads# fg
  5. vim thread_join函数返回值与说明.pl

  6. [1]+  Stopped                 vim thread_join函数返回值与说明.pl
  7. root@Perl:~/perlstu/threads# perl thread_join函数返回值与说明.pl
  8. threads=SCALAR(0x25fe520)
  9. a b c d
复制代码

论坛徽章:
95
程序设计版块每日发帖之星
日期:2015-09-05 06:20:00程序设计版块每日发帖之星
日期:2015-09-17 06:20:00程序设计版块每日发帖之星
日期:2015-09-18 06:20:002015亚冠之阿尔艾因
日期:2015-09-18 10:35:08月度论坛发贴之星
日期:2015-09-30 22:25:002015亚冠之阿尔沙巴布
日期:2015-10-03 08:57:39程序设计版块每日发帖之星
日期:2015-10-05 06:20:00每日论坛发贴之星
日期:2015-10-05 06:20:002015年亚冠纪念徽章
日期:2015-10-06 10:06:482015亚冠之塔什干棉农
日期:2015-10-19 19:43:35程序设计版块每日发帖之星
日期:2015-10-21 06:20:00每日论坛发贴之星
日期:2015-09-14 06:20:00
2 [报告]
发表于 2015-12-14 14:53 |只看该作者
回复 1# 522468522


    这还是把 array 和 list 搞混了:http://learn.perl.org/faq/perlfa ... a-list-and-an-array
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP