perl如何导入实用程序文件?

发布于 2024-12-14 20:09:44 字数 259 浏览 0 评论 0原文

在perl中,如何包含util文件?例如,我有一个文件“util.pl”,其中有一个函数。然后我想包含/导入该文件,该怎么做?

main.pl
use strict;
use warnings;

main();

sub main{
    my_funtion("start processing feed");
}

---------
util.pl
use strict;
use warnings;

sub my_funtion {

}

In the perl, how to include a util file ? for example, I have a file "util.pl" , inside which has a function. then I want to include / import that file, how to do it ?

main.pl
use strict;
use warnings;

main();

sub main{
    my_funtion("start processing feed");
}

---------
util.pl
use strict;
use warnings;

sub my_funtion {

}

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

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

发布评论

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

评论(1

春风十里 2024-12-21 20:09:44

对于您需要的 pl 脚本。

require "util.pl";

靠近 main.pl 脚本的顶部(use strict 之后)。

使用 .pm 文件、包和 use 语句可能“更好”。但上面的内容已经解决了你提出的问题。

For a pl script you need.

require "util.pl";

Near the top (after use strict) of your main.pl script.

Using .pm files, packages, and the use statement is probably "better". But the above will solve the question you asked.

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