VS2010集成PCLint操作手册
在VS2010中配置PCLint,想对整个工程做检查,找了不少资料,最终终于搞定。
1 PCLInt安装(参考其他朋友的博客)
2 修改.lnt文件
3 VS2010中单个文件扫描
4 VS2010中多个文件扫描
linux下GDB调试教程
linux环境下的GDB调试教程.pdf
maven实战.pdf
《maven实战.pdf》许晓斌著,机器工业出版社。
内容缩略:
第1章 Maven简介
第2章 Maven的安装和配置(包括windows和unix上)
第3章 Maven使用入门
第4章 背景案例
第5章 坐标和依赖
第6章 仓库
第7章 生命周期与插件
第8章 聚合与继承
第9章 使用Nexus创建私服
第10章 使用Maven进行测试
第11章 使用Hudson进行持续集成
第12章 使用Maven构建Web应用
第13章 版本管理
第14章 灵活的构建
第15章 生成项目站点
第16章 m2eclipse
第17章 编写Maven插件
第18章 Archetype
附录A B C
land of lisp
《land of lisp》,英文版(目前无英译)。pdf文档,清晰,超赞的lisp书籍。学习后,建议买实体书进行收藏。
内容缩略:
BRIEF CONTENTS
Acknowledgments........................................................................................................xvii
Introduction....................................................................................................................1
SECTION I: LISP IS POWER
Chapter 1: Getting Started with Lisp................................................................................15
Chapter 2: Creating Your First Lisp Program.....................................................................21
Chapter 3: Exploring the Syntax of Lisp Code...................................................................31
SECTION II: LISP IS SYMMETRY
Chapter 4: Making Decisions with Conditions..................................................................49
Chapter 5: Building a Text Game Engine.........................................................................67
Chapter 6: Interacting with the World: Reading and Printing in Lisp....................................85
Chapter 6.5: lambda: A Function So Important It Deserves Its Own Chapter.......................103
Chapter 7: Going Beyond Basic Lists.............................................................................107
Chapter 8: This Ain!ˉt Your Daddy!ˉs Wumpus..................................................................1
Chapter 9: Advanced Datatypes and Generic Programming............................................153
SECTION III: LISP IS HACKING..................................................................................191
Chapter 10: Looping with the loop Command................................................................195
Chapter 11: Printing Text with the format Function...........................................................221
Chapter 12: Working with Streams...............................................................................237
Chapter 13: Let!ˉs Create a Web Server!........................................................................25
Functional Programming Is Beautiful ..............................................................................269
SECTION IV: LISP IS SCIENCE
Chapter 14: Ramping Lisp Up a Notch with Functional Programming................................291
Chapter 15: Dice of Doom, a Game Written in the Functional Style..................................303
Chapter 16: The Magic of Lisp Macros..........................................................................339
Chapter 17: Domain-Specific Languages........................................................................355
Chapter 18: Lazy Programming....................................................................................375
Chapter 19: Creating a Graphical, Web-Based Version of Dice of Doom..........................401
Chapter 20: Making Dice of Doom More Fun.................................................................417
Epilogue....................................................................................................................429
Index.........................................................................................................................465
Practical Common Lisp.pdf
实用CommonLisp编程英文版,pdf文档。内容清晰!
《Practical Common Lisp.pdf》比较不错的common lisp初级书籍。
内容缩略:
ContentsContents
About the Author . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .xix
About the Technical Reviewer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .xxi
Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .xxiii
Typographical Conventions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxvCHAPTER 1 Introduction: Why Lisp? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
Why Lisp?. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
Where It Began. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
Who This Book Is For. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7CHAPTER 2 Lather, Rinse, Repeat: A Tour of the REPL . . . . . . . . . . . . . . . . 9
Choosing a Lisp Implementation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
Getting Up and Running with Lisp in a Box. . . . . . . . . . . . . . . . . . . . . . . . . 11
Free Your Mind: Interactive Programming . . . . . . . . . . . . . . . . . . . . . . . . . 12
Experimenting in the REPL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
!°Hello, World,!± Lisp Sty . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
Saving Your Work. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15CHAPTER 3 Practical: A Simple Database . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19
CDs and Records . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19
Filing CDs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
Looking at the Database Contents. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
Improving the User Interaction. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
Saving and Loading the Database. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
Querying the Database . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
Updating Existing Records!aAnother Use for WHER. . . . . . . . . . . . . . . . 31
Removing Duplication and Winning Big . . . . . . . . . . . . . . . . . . . . . . . . . . . 32
Wrapping Up. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36
英语GRE单词表
英语GRE单词词汇表,txt文档,只含单词。
内容缩略:
abacus
abandon
abase
abate
abbreviation
abdicate
abdomen
abduct
aberrant
abet
英语六级CET6单词表(只含单词)
英语六级CET6单词表,txt文档,只含单词。
内容缩略:
abbreviation
abide
abolish
absent
absorption
abstract
absurd
abundance
accessory
accord
acknowledge
英语四级CET4单词表(只含单词)
英语四级CET4单词表,txt文档,只含单词。
内容缩略:
a
abandon
ability
able
abnormal
aboard
about
above
abroad
absence
absent
absolute
absolutely
absorb
英语GRE单词词汇表
英语GRE单词词汇表,txt文档。
内容缩略:
abacus n.算盘
abandon v.n.放弃,放纵
abase v.贬抑,使卑下
abate v.减轻,降低
abbreviation n.缩短,缩写
abdicate v.让位,辞职,放弃
abdomen n.腹,下腹(胸部到腿部的部份)
abduct v.绑架,拐走
aberrant adj.越轨的,异常的
abet v.教唆,协助(罪犯)
abeyance n.中止,暂搁
abhor v.憎恨,嫌恶
abhorrent adj.可恨的,可厌的
abide v.容忍,忍受
abject adj.极可怜的,卑屈的
abjure v.誓绝,弃绝
ablution n.(宗教的)净礼,沐浴
abnegation n.克己,自制
abnormal adj.不正常的,变态的
abode n.住处,住所
abolition n.废除,革除
英语六级单词词汇表
英语六级CET6单词词汇表,txt文档。
内容列举:
abbreviation n.节略,缩写,缩短
abide vt.遵守 vt.忍受
abolish vt.废除,取消
absent a.不在意的
absorption n.吸收;专注
abstract a.理论上的 n.抽象
absurd a.不合理的,荒唐的
abundance n.丰富,充裕
accessory n.同谋 a.附属的
accord n.调和,符合;协议
acknowledge vt.承认;告知收到
acquaint vt.使认识,使了解
action n.作用;情节
adhere vi.粘附;追随;坚持
adjacent a.毗连的;紧接着的
英语四级单词表
英语四级单词词汇列表,txt文档。
内容如:
a art.一(个);每一(个)
abandon vt.丢弃;放弃,抛弃
ability n.能力;能耐,本领
able a.有能力的;出色的
abnormal a.不正常的;变态的
aboard ad.在船(车)上;上船
about prep.关于;在…周围
above prep.在…上面;高于
abroad ad.(在)国外;到处
absence n.缺席,不在场;缺乏
absent a.不在场的;缺乏的