为什么“使用”是“使用”?语句首先在 BEGIN 块中执行?

发布于 2024-11-06 03:04:03 字数 189 浏览 1 评论 0原文

当我执行以下代码时,我得到Can't located SomePackage.pm in @INC ...

BEGIN {
    die;
    use SomePackage;
}

为什么use先于die执行?

When I execute the following code, I get Can't locate SomePackage.pm in @INC ....

BEGIN {
    die;
    use SomePackage;
}

Why is use executed before die?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一杆小烟枪 2024-11-13 03:04:03

use SomePackage 完全等同于

BEGIN { require SomePackage; SomePackage->import }

BEGIN 代码块会尽快执行,即在它完全定义时执行。第二个 BEGIN (由 use 隐含)首先被完全定义,因此首先被执行。

use SomePackage is exactly equivalent to

BEGIN { require SomePackage; SomePackage->import }

A BEGIN code block is executed as soon as possible, that is, the moment it is completely defined. The second BEGIN (which is implied by use) is completely defined first, and is thus executed first.

画离情绘悲伤 2024-11-13 03:04:03

来自 http://perldoc.perl.org/functions/use.html

因为use在编译时生效
时间,它不尊重平凡
代码的流程控制是
已编译。

From http://perldoc.perl.org/functions/use.html

Because use takes effect at compile
time, it doesn't respect the ordinary
flow control of the code being
compiled.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文