码迷,mamicode.com
首页 > 其他好文 > 详细

perl语言use warning命令和-w的区别

时间:2014-07-22 09:13:37      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:style   os   for   re   c   line   

   Perl语言编程不安全语法检查可用下面两个命令:

#!/usr/bin/perl -w

   或者:

use warnings;

    虽然两者都可以提示不安全的语法, 但是还是有差别的, Perl帮助文档里面写到:

    The warnings pragma is a replacement for the command line flag -w, but the pragma is limited to the enclosing block, while the flag is global.

    可见前者的作用范围是全局, 而后者可由下面语句提前终结:

no warnings;


perl语言use warning命令和-w的区别,布布扣,bubuko.com

perl语言use warning命令和-w的区别

标签:style   os   for   re   c   line   

原文地址:http://my.oschina.net/u/1791586/blog/289738

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!