perl的Smart::Comments模块简单实例

发布时间:2020-07-05编辑:脚本学堂
perl模块Smart::Comments,会把特定的注释变成调试语句。
范例:
复制代码 代码如下:#!perl -w
use Smart::Comments;
$a{‘a’}[0]=20;
#debug info
###

perl模块Smart::Comments,会把特定的注释变成调试语句。
范例:
 

复制代码 代码如下:
#!perl -w
use Smart::Comments;
$a{‘a’}[0]=20;
#debug info
### %a
$a{‘a’}[0]++;
### %a
print $a{‘a’}[0];

可以发现在###注释的地方,程序把%a哈希输出了。
这样只要通过简单的是否use Smart::Comments就可以在调试模式下切换了。
还有从命令行调用的方式,这样连第一句use也不用了:
perl -MSmart::Comments test.pl
只要通过加上参数就能获取调试信息,很方便哦。