如何在Perl中运行时加载模块?

前端之家收集整理的这篇文章主要介绍了如何在Perl中运行时加载模块?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以在运行时在Perl中加载模块?我尝试了以下,但它没有用.我在程序中的某处写了以下内容
require some_module;
import some_module ("some_func");
some_func;

解决方法

Foo.pm
package Foo;

use strict;
use warnings;

use base qw(Exporter);
our @EXPORT = qw(bar);

sub bar { print "bar(@_)\n" }

1;

script.pl

use strict;
use warnings;

require Foo;
Foo->import('bar');
bar(1,22,333);
原文链接:https://www.f2er.com/Perl/171722.html

猜你在找的Perl相关文章