gpt4 book ai didi

perl - 函数可以告诉它是从哪个模块调用的吗?

转载 作者:行者123 更新时间:2023-12-04 23:04:38 25 4
gpt4 key购买 nike

package Bar;
use Foo;

sub bar { fooit "hello from bar"; }

package Foo;

sub fooit {
# Somehow I want this function to know it was called
# from the "Bar" module (in this case).
}

优选地,这将在不显式传递包含调用模块名称的参数的情况下完成。

最佳答案

内置 caller 函数可用于获取有关当前调用堆栈的信息。

 sub fooit {
my ($pkg, $file, $line) = caller;
print STDERR "fooit was called from the $pkg package, $file:$line\n";
}

关于perl - 函数可以告诉它是从哪个模块调用的吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15299971/

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