gpt4 book ai didi

perl - 是否可以在 perl 中启用/禁用基于 ARGV 的使用严格/警告?

转载 作者:行者123 更新时间:2023-12-05 00:55:12 26 4
gpt4 key购买 nike

是否可以在 perl 中启用/禁用基于 ARGV 的使用严格/警告?

我试过这段代码,但它不起作用。我相信它应该在'$x = 2'的行产生一个警告错误;

# Do this at the beginning of the script    
BEGIN {
if ( $ARGV[0] =~ /^Y$/i ) {
use strict;
use warnings;
}
else {
no strict;
no warnings;
}
}

$x = 2;

print "x is $x\n";

目的是仅在开发中启用警告消息。

最佳答案

use strict;

相当于
BEGIN {
require strict;
import strict;
}

所以 use strict;的效果是无条件的(因为 import strict; 在评估 if 之前被评估)。

此外,两者的影响 use strictuse warnings是词法范围的,因此它们的效果一如既往地仅限于它们所在的 curl 。


no strict;    # Probably not actually needed.
no warnings; # Probably not actually needed.
use if scalar( $ARGV[0] =~ /^Y\z/i ), 'strict';
use if scalar( $ARGV[0] =~ /^Y\z/i ), 'warnings';

关于perl - 是否可以在 perl 中启用/禁用基于 ARGV 的使用严格/警告?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41093318/

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