我想在Perl中可以做到这一点(下面的代码是Python的哈哈)
try: import Module except: print "You need module Module to run this program."
有人有什么想法吗?
@H_301_6@解决方法
TIMTOWTDI:
eval "use Module; 1" or die "you need Module to run this program".
要么
require Module or die "you need Module to run this program"; Module->import;
要么
use Module::Load; eval { load Module; 1 } or die "you need Module to run this program";
你可以在CPAN找到Module::Load。
@H_301_6@ @H_301_6@ 原文链接:https://www.f2er.com/Perl/172942.html