gpt4 book ai didi

perl - 这行 perl 在做什么?

转载 作者:行者123 更新时间:2023-12-01 11:44:10 25 4
gpt4 key购买 nike

我不明白 return 语句在做什么。

my %config = (
'name' => 'blah',
);

return wantarray ? %config : \%config;

特别是\% 部分让我感到困惑。

最佳答案

参见 perldoc -f wantarray :

Returns true if the context of the currently executing subroutine or eval is looking for a list value. Returns false if the context is looking for a scalar. Returns the undefined value if the context is looking for no value (void context).

如果调用者不想要列表,\%config 语法返回对%config 散列的引用,而不是将散列扁平化为交替列表键和值。

关于perl - 这行 perl 在做什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16969896/

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