gpt4 book ai didi

multithreading - 如何将共享数据传递给Perl中的线程?

转载 作者:行者123 更新时间:2023-12-03 13:14:19 26 4
gpt4 key购买 nike

use threads;
use threads::shared;

sub test {
my $s :shared = 22;
my $thread = threads->new(\&thrsub);

$thread->join();
print $s;

}

sub thrsub {
$s = 33;
}

test;

为什么不在线程中共享数据?

最佳答案

它共享变量,但是您正在访问的变量与共享的变量不同。 (在这种情况下,use strict;会告诉您有不同的变量。请始终使用use strict; use warnings;)解决方法是使用单个变量。

my $s :shared = 22;

sub test {
my $thread = threads->new(\&thrsub);
$thread->join();
print $s;
}

sub thrsub {
$s = 33;
}

test;

关于multithreading - 如何将共享数据传递给Perl中的线程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11266662/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com