Perl 的复杂性?
关于 Perl 编程语言的复杂性的一般讨论是什么,比如人们应该真正关注什么在讨论其复杂性时?
What is the general discussion of the complexity of the Perl programming language, like what should one really focus on when discussing its complexity?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Perl 的“复杂性”之一来自于有多种方法可以完成某件事。
考虑一下低级的“if”语句。 Perl 提供了几种替代的 if 和类 if 结构。 N00b Perl 程序员被迫询问哪个是“首选”,并发现答案往往是微妙的。
有时是
do_something || die
,有时是do_something 或 die
,有时是一个真正的 if 语句。One source perl's "complexity" comes from there being several ways to do something.
Consider the lowly "if" statement. Perl offers several alternative if, and if-like constructs. N00b perl programmers are forced to ask which is "preferred" and find that the answer is often nuanced.
Sometimes it's
do_something || die
, sometimes it'sdo_something or die
, sometimes it's a for-real if-statement.