发布于 2014-09-16 00:33:13 | 191 次阅读 | 评论: 0 | 来源: 网友投递
Perl 编程语言
Perl借取了C、sed、awk、shell scripting以及很多其他程序语言的特性。其中最重要的特性是它内部集成了正则表达式的功能,以及巨大的第三方代码库CPAN。简而言之,Perl像C一样强大,像awk、sed等脚本描述语言一样方便,被称之为“一种拥有各种语言功能的梦幻脚本语言”、“Unix 中的王牌工具”。
Perl 5.20.1 发布了,如果你从 5.18.0 升级,请先阅读 perl5200delta, 因为这里描述了 5.18 和 5.20 之间的区别。该版本与 5.20.0 版本没有什么不兼容的改变,如果有的话,那一定是 bug。
性能方面的提升:
An optimization to avoid problems with COW and deliberately overallocated PVs has been disabled because it interfered with another, more important, optimization, causing a slowdown on some platforms. [perl #121975]
Returning a string from a lexical variable could be slow in some cases. This has now been fixed. [perl #121977]