gpt4 book ai didi

perl - 在 Perl 中将带参数的子程序插入堆栈

转载 作者:行者123 更新时间:2023-12-01 07:12:35 26 4
gpt4 key购买 nike

我想将带有参数的子程序插入堆栈,但我无法弄清楚语法。考虑一个没有参数的工作示例:

#!/usr/bin/perl -w
use strict;
use warnings;

sub hi { print "hi\n"; }
sub hello { print "hello\n"; }
sub world { print "world\n"; }

my @stack;
push (@stack, \&hi );
push (@stack, \&hello);
push (@stack, \&world);

while (@stack) {
my $proc = pop @stack;
$proc->();
}

当我运行代码时:

% ./pop-proc.pl
world
hello
hi

现在我的问题是,如果子程序看起来像这样会怎样:

sub mysub 
{
chomp( my( $arg ) = @_ );
print "$arg\n";
}

我想推送带有参数的子程序,例如:

mysub("hello");
mysub("world");

非常感谢您的意见。

最佳答案

使用匿名子(甚至可能是闭包)。

push @stack, sub { mysub("hello") };
push @stack, sub { mysub("world") };

例如,
sub hi { say "@_" }
my $arg = "Hello";
my $sub = sub { hi($arg, @_) };
$sub->("World"); # Hello World

关于perl - 在 Perl 中将带参数的子程序插入堆栈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44912863/

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