gpt4 book ai didi

perl - 如何让 perl -c 抛出未定义或未声明的函数错误?

转载 作者:行者123 更新时间:2023-12-04 02:42:29 25 4
gpt4 key购买 nike

来自 C++ 背景,我虔诚地使用 use strictuse warnings Perl的特点:

#!/usr/bin/perl -w
use strict;
use warnings;

$foo = 1; #Throws "$foo" requires explicit package name error

foobar( 1 );
use strict当您输入错误的变量名时,construct 对捕获错误非常有帮助。是否有等效的构造来捕获错误输入的函数名称?在上面的例子中,如果有类似 perl -c 的东西就好了。发现没有 的事实foob​​ar 可以调用的函数。当然运行脚本会抛出 未定义子程序 错误,但我想早点捕获它。

最佳答案

尝试这个:

perl -MO=Lint -cw /path/to/script.pl
这使用 B::Lint module .

关于perl - 如何让 perl -c 抛出未定义或未声明的函数错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8499608/

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