现在我打算将一些代码分成一个新的子程序.我想至少在那里使用警告.如何安全地限制使用警告对一个子程序的影响?只是将use子句放在子程序中就能完成这项工作吗?
解决方法 是的,使用警告将在您编写它的范围内.在子内写入使用警告只会影响给定例程(或块).
示例代码段
sub foo { use warnings; print my $a; }{ use warnings; print my $b;}foo;print my $c;
产量
Use of uninitialized value $b in print at foo.pl line 8.Use of uninitialized value $a in print at foo.pl line 3.
请注意,没有关于使用print my $c的警告.
文件说什么?
> perldoc.perllexwarn
总结This pragma works just like the strict pragma. This means that the scope of the warning pragma is limited to the enclosing block. It also means that the pragma setting will not leak across files (via use,require or do). This allows authors to independently define the degree of warning checks that will be applIEd to their module.
以上是内存溢出为你收集整理的perl – 我可以只在一个子程序中“使用警告”吗?全部内容,希望文章能够帮你解决perl – 我可以只在一个子程序中“使用警告”吗?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)