• 精通Perl(影印版)
图书条目标准图
21年品牌 40万+商家 超1.5亿件商品

精通Perl(影印版)

18.34 3.8折 48 九品

仅1件

北京东城
认证卖家担保交易快速发货售后保障

作者[美]福瓦(Foy B.D.) 著

出版社东南大学出版社

出版时间2008-02

版次1

装帧平装

上书时间2024-10-18

图书-天下的书店

已实名 已认证 进店 收藏店铺

   商品详情   

品相描述:九品
图书标准信息
  • 作者 [美]福瓦(Foy B.D.) 著
  • 出版社 东南大学出版社
  • 出版时间 2008-02
  • 版次 1
  • ISBN 9787564110376
  • 定价 48.00元
  • 装帧 平装
  • 开本 16开
  • 纸张 胶版纸
  • 页数 322页
  • 字数 361千字
  • 正文语种 英语
【内容简介】
  《精通Perl(影印版)》是OReilly具有标杆意义的Perl指南系列丛书的第三本,该系列包括《LearningPerl》(最为畅销的一本介绍Perl基础语法的书,简体中文版由东南大学出版社出版),《IntermediatePerl》(一本Perl程序员必备的指导如何创建可重用的Perl软件的书)和《精通Perl》。
  《精通Perl(影印版)》并非一堆奇技的简单集合,而是着重介绍Perl编程的思维方式,这是每一个合格的程序员都应当掌握的,并且应当借此解决实际生活中各式问题,如调试代码、维护程序以及配置等。《精通Perl(影印版)》解释了该如何:使用高级正则表达式,包括全局匹配、前后查询匹配、可读的正则表达式以及对正则表达式的调试;使用安全可靠的编程技术,避免常见的编程问题;剖析Perl运行时数据并作基准测试,继而有针对性地进行性能优化;重新组织Perl代码,使其更具自我表达力,增强可读性;查看Perl如何实现对包变量的跟踪维护,你可以用类似的技巧玩出更多有用的花样来;动态定义子程序,从容化解普通过程式编程带来的劣势;临时修改或调整相关的模块,在不修改源代码的情况下修复代码存在的问题;在不触及代码的情况下,让用户自行对程序进行配置;侦测Perl没有报告的那些错误并向用户汇报;应用Log4Perl模块,从Perl程序的运行日志获取有价值的信息;存储相关数据以便后续再次运行该程序或其他程序时可以访问该数据,以及如何通过网络发送数据以Perl模块的形式编写应用程序,以便使用现成的测试工具并轻松发布。
  《精通Perl(影印版)》将带你一路揭示这些问题的答案,让你从容地成为能够发现并解决疑难杂症的专家。
【作者简介】
brian d foy是stonehenge Consulting Services公司的顾问,也是The Perl Review杂志的出版者。他所创立的非营利性公司Perl Mongers,Inc.,已经在全球范围内帮助筹建了200多个Perl用户组。brian还维护着核心Perl文档中的perlfaq部分,以及众多发布到CPAN的模块。他还是P
【目录】
Foreword
Preface
1.Introduction:BecomingaMaster
WhatItMeanstoBeaMaster
WhoShouldReadThisBook
HowtoReadThisBook
WhatShouldYouKnowAlready?
WhatICover
WhatIDontCover
2.AdvancedRegularExpressions
ReferencestoRegularExpressions
NoncapturingGrouping,(?:PATTERN)
ReadableRegexes,/xand(?#...)
GlobalMatching
Lookarounds
DecipheringRegularExpressions
FinalThoughts
Summary
FurtherReading
3.SecureProgrammingTechniques
BadDataCanRuinYourDay
TaintChecking
UntaintingData
ListFormsofsystemandexec
Summary
FurtherReading
4.DebuggingPerl
BeforeYouWasteTooMuchTime
TheBestDebuggerintheWorld
perlSdb.pl
AlternativeDebuggers
OtherDebuggers
Summary
FurtherReading
5.ProfilingPerl
FindingtheCulprit
TheGeneralApproach
ProfilingDBI
Devel::DProf
WritingMyOwnProfiler
ProfilingTestSuites
Summary
FurtherReading
6.BenchmarkingPerl
BenchmarkingTheory
BenchmarkingTime
ComparingCode
DontTurnOffYourThinkingCap
MemoryUse
TheperlbenchTool
Summary
FurtherReading
7.CleaningUpPerl
GoodStyle
perltidy
De-Obfuscation
Perl::Critic
Summary
FurtherReading
8.SymboITablesandTypeglobs
PackageandLexicalVariables
TheSymbolTable
Summary
FurtherReading
9.DynamicSubroutines
SubroutinesAsData
CreatingandReplacingNamedSubroutines
SymbolicReferences
IteratingThroughSubroutineLists
ProcessingPipelines
MethodLists
SubroutinesAsArguments
AutoloadedMethods
HashesAsObjects
AutoSplit
Summary
FurtherReading
10.ModifyingandJury-RiggingModules
ChoosingtheRightSolution
ReplacingModuleParts
Subclassing
WrappingSubroutines
Summary
FurtherReading
11.ConfiguringPerlPrograms
ThingsNottoDo
BetterWays
Command-LineSwitches
ConfigurationFiles
ScriptswithaDifferentName
InteractiveandNoninteractivePrograms
perlsConfig
Summary
FurtherReading
12.DetectingandReportingErrors
PerlErrorBasics
ReportingModuleErrors
Exceptions
Summary
FurtherReading
13.Logging
RecordingErrorsandOtherInformation
Eog4perl
Summary
FurtherReading
14.DataPersistence
FlatFiles
Storable
DBMFiles
Summary
FurtherReading
15.WorkingwithPod
ThePodFormat
TranslatingPod
TestingPod
Summary
FurtherReading
16.WorkingwithBits
BinaryNumbers
BitOperators
BitVectors
ThevecFunction
KeepingTrackofThings
Summary
FurtherReading
17.TheMagicofTiedVariables
TheyLookLikeNormalVariables
AttheUserLevel
BehindtheCurtain
Scalars
Arrays
Hashes
Filehandles
Summary
FurtherReading
18.ModulesAsPrograms
ThemainThing
BackingUp
WhosCalling?
TestingtheProgram
DistributingthePrograms
Summary
FurtherReading
A.FurtherReading
B.briansGuidetoSolvingAnyPerlProblem
Index
点击展开 点击收起

—  没有更多了  —

以下为对购买帮助不大的评价

此功能需要访问孔网APP才能使用
暂时不用
打开孔网APP