微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在评估之后Perl的$@会不会被定义?

我正在研究 Mastering Perl“Error Handling and Reporting”章.在 perlvar的$@条目中,它说:

The Perl Syntax error message from the last eval() operator. If $@ is the null string,the last eval() parsed and executed correctly (although the operations you invoked may have Failed in the normal fashion).

现在我想知道eval何时可能无法正确执行,留下带有未定义值的$@.有这种情况吗?

解决方法

这是一种方法(但在你阅读它之前坐下来.;))

$@ = 123;
eval q{
  $@ = 456;
  print ">>>$@<<<\n";
  goto SKIP;
};

SKIP:
print ">>>$@<<<\n";

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐