楼主: ReneeBK
2862 9

Effective Perl Programming 2nd Edition [推广有奖]

  • 1关注
  • 62粉丝

VIP

已卖:4897份资源

学术权威

14%

还不是VIP/贵宾

-

TA的文库  其他...

R资源总汇

Panel Data Analysis

Experimental Design

威望
1
论坛币
49635 个
通用积分
55.7537
学术水平
370 点
热心指数
273 点
信用等级
335 点
经验
57805 点
帖子
4005
精华
21
在线时间
582 小时
注册时间
2005-5-8
最后登录
2023-11-26

楼主
ReneeBK 发表于 2014-12-14 09:07:36 |AI写论文

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币

Effective Perl.jpg
Effective Perl Programming: Ways to Write Better, More Idiomatic Perl (2nd Edition)

by Joseph N. Hall  (Author), Joshua A. McAdams  (Author), brian d foy  (Author)


Product Details
  • Series: Effective Software Development Series
  • Paperback: 504 pages
  • Publisher: Addison-Wesley Professional; 2 edition (April 29, 2010)
  • Language: English
  • ISBN-10: 0321496949
  • ISBN-13: 978-0321496942
  • Product Dimensions: 7 x 0.6 x 9.1 inches


For years, experienced programmers have relied on Effective Perl Programming to discover better ways to solve problems with Perl. Now, in this long-awaited second edition, three renowned Perl programmers bring together today’s best idioms, techniques, and examples: everything you need to write more powerful, fluent, expressive, and succinct code with Perl.


Nearly twice the size of the first edition, Effective Perl Programming, Second Edition, offers everything from rules of thumb to avoid common pitfalls to the latest wisdom for using Perl modules. You won’t just learn the right ways to use Perl: You’ll learn why these approaches work so well.


New coverage in this edition includes


  • Reorganized and expanded material spanning twelve years of Perl evolution
  • Eight new chapters on CPAN, databases, distributions, files and filehandles, production Perl, testing, Unicode, and warnings
  • Updates for Perl 5.12, the latest version of Perl
  • Systematically updated examples reflecting today’s best idioms






本帖隐藏的内容

Effective Perl Programming.pdf (6.97 MB, 需要: 5 个论坛币)



二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

关键词:Programming Effective Edition Program Effect Software

本帖被以下文库推荐

沙发
NewOccidental(未真实交易用户) 发表于 2014-12-14 09:52:48
Find the documentation for Perl and its modules

Perl comes with a lot of documentation—more than you’d ever want to put on paper. You’d use a couple of reams of paper and a lot of toner to print it all. We lost count after the documentation got to be around 2,000 pages (on our virtual printer, so no trees harmed).

There is a huge amount of useful information in the documentation files, so it pays to be able to read them, but even more than that, to find information in them. Part of the ability to find what you need is knowledge, and part of it is tools.

The perldoc reader

The perldoc command searches the Perl tree for Perl modules (.pm) with embedded documentation, documentation-only .pod files (Item 82), and installed Perl programs. The perldoc command formats and displays the documentation it finds. To start, readperldoc’s own documentation:

  1. % perldoc perldoc
  2. PERLDOC(1) User Contributed Perl Documentation

  3. NAME
  4.      C<perldoc> - Look up Perl documentation in pod format.

  5. SYNOPSIS
  6.      C<perldoc> [-h] [-v] [-t] [-u] [-m] [-l]
  7. ... etc. ...
复制代码


藤椅
michaelkuo8818(未真实交易用户) 发表于 2014-12-14 18:47:26
Enable new Perl features when you need them

Starting with Perl 5.10, you must explicitly enable new features. This ensures that the latest release of Perl can be backward compatible while at the same time letting people start new work using all of the latest nifty features.

For instance, Perl 5.10 adds a say built-in that is just like print except that it adds the trailing newline for you. Not only is your string a couple of characters shorter, but you don’t have to double-quote the string just for the newline:

  1. say 'Hello!';  # just like print "Hello\n";
复制代码



If someone had already created their own say, their program might break if they run it with Perl 5.10 using the now built-in with the same name. Fortunately, Perl doesn’t enable new features by default:

  1. % perl5.10.1 say.pl   # doesn't use new features

  2. String found where operator expected at old_script.pl line 1, near "say "Hello!""
  3.       (Do you need to predeclare say?)
复制代码


If you want the new features, you can enable them with the new -E switch. It’s just like the -e that lets you specify your program text on the command line, but it also brings in the all of the latest features for your version of Perl:

% perl5.10.1 -E say.pl   # use new features up to 5.10.1% perl5.12.0 -E say.pl   # use new features up to 5.12.0

板凳
文津国际(未真实交易用户) 发表于 2014-12-15 00:33:36
nice nice

报纸
mike68097(未真实交易用户) 发表于 2014-12-15 11:41:20
支持!!!!

地板
曲散人终(未真实交易用户) 发表于 2015-1-11 20:26:29
正在学习Perl,谢谢

7
Nicolle(未真实交易用户) 学生认证  发表于 2015-7-5 01:22:33
提示: 作者被禁止或删除 内容自动屏蔽

8
Reader's(未真实交易用户) 发表于 2017-7-21 22:14:20

9
Reader's(未真实交易用户) 发表于 2017-7-21 22:34:08
  • Effective Perl Programming 2nd Edition
  • Modern Perl, 4th Edition
  • Learning Perl (2016, 7th Edition), 原版 PDF
  • Backup Script Development in Perl
  • [精品图书]Building Bioinformatics Solutions with Perl, R and MySQL 2nd 2014
  • Perloff Microeconomics With Calculus 解答
  • Become a SuperLearner: Learn Speed Reading & Advanced Memoriza
  • Perl模块安装方法
  • Language Processing with Perl and Prolog
  • Mastering Algorithms with Perl
  • Pro Perl: From Professional to Expert
  • An Introduction to Language Processing with Perl and Prolog
  • Learning Perl 6th Edition Jun 2011
  • Learning Perl (2016, 7th Edition), EPUB
  • Perl Hacks
  • Perl: Programming Success in a Day
  • Pro Perl
  • Perl Cookbook 2nd Edion
  • Perl Crash Course
  • Graphics Programming with Perl
  • Pro Perl Debugging
  • Perl Database Programming
  • Perl by Example 4th Edition
  • Perl Best Practices
  • [Jerker]Programming Perl, 4th Edition
  • [精品图书]Perl and XML
  • Perl 6 Essentials
  • Perl Programming for Biologists
  • The Visibooks Guide to PERL Basics
  • Learning Perl Student Workbook, 2nd Edition
  • Perl Programming for Medicine and Biology
  • Online eBook:Practical mod_perl by Stas Bekman and Eric Cholet
  • PERL RELATED EBOOK
  • Using Perl for Statistics
  • PERL Programming Exercise GuideData Munging with Perl
  • Perl 5 2nd Edition
  • Perl 5 Unleashed
  • Practical Text Mining with Perl(2008)
  • Perl Books
  • Perl 5 to Perl 6
  • Simon Cozens:Beginning Perl
  • Perl 5 Tutorial 1st Edition
  • Perl的一些知识点
  • Perl by Example (5th Edition)
  • CGI Programming with Perl 2nd Edition
  • Perl 3rd Edition
  • Bioinformatics Biocomputing and Perl
  • MySQL and Perl for the Web
  • Automating System Administration with Perl 2nd Edition
  • Perl for System Administration
  • Sams Teach Yourself Perl in 21 Days, Second Edition
  • Wicked Cool Perl Scripts
  • Learning Perl, 6th Edition
  • Perl语言入门第六版
  • Perl Power!: The Comprehensive Guide
  • Perl & LWP


10
heavennew(真实交易用户) 发表于 2018-7-18 18:47:07
非常棒的资源!!

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
加好友,备注jltj
拉您入交流群
GMT+8, 2026-1-1 12:20