Perl中多行注释的常见解决方法是什么?

前端之家收集整理的这篇文章主要介绍了Perl中多行注释的常见解决方法是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
This RFC提到

Unlike many programming languages Perl does not currently implement true multiline comments. This,and the workarounds that are in common use can be problematic. This could be solved by adding a new Syntax to allow for comments to span more than one line,like the variation on here-documentation cited below.

常见的解决方法是什么?

我发现here的两种技术

if (0) {
  <comment>
}

=pod
<comment>
=cut

这些是否安全使用?有其他人工作更好吗?

解决方法

“if”解决方案的缺点是,注释掉的代码仍然需要编译(因此仍然需要语法检查)。

您的pod解决方案的缺点是您的注释将显示在从pod生成的任何文档中。

我使用的pod解决方案没有这个问题的版本。 Pod supports = begin format … =由特定格式化程序处理的结束格式段落。我只是发明了一个“注释”格式,不是由我使用的任何格式化程序。

=begin comment

This is ignored by everything

=end comment

更新:

我错过了我的例子的一个重要部分。您需要使用= cut结束pod部分。这里有一个完整的例子。

#!/usr/bin/perl

print "This line is executed\n";

=begin comment

print "This line isn't\n";

=end comment

=cut

print "This line is\n";
原文链接:https://www.f2er.com/Perl/173310.html

猜你在找的Perl相关文章