.NET设计规范——约定、惯用法与模式(第2版·英文版)(附光盘) 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线

.NET设计规范——约定、惯用法与模式(第2版·英文版)(附光盘)电子书下载地址
- 文件名
- [epub 下载] .NET设计规范——约定、惯用法与模式(第2版·英文版)(附光盘) epub格式电子书
- [azw3 下载] .NET设计规范——约定、惯用法与模式(第2版·英文版)(附光盘) azw3格式电子书
- [pdf 下载] .NET设计规范——约定、惯用法与模式(第2版·英文版)(附光盘) pdf格式电子书
- [txt 下载] .NET设计规范——约定、惯用法与模式(第2版·英文版)(附光盘) txt格式电子书
- [mobi 下载] .NET设计规范——约定、惯用法与模式(第2版·英文版)(附光盘) mobi格式电子书
- [word 下载] .NET设计规范——约定、惯用法与模式(第2版·英文版)(附光盘) word格式电子书
- [kindle 下载] .NET设计规范——约定、惯用法与模式(第2版·英文版)(附光盘) kindle格式电子书
内容简介:
本书关注直接影响框架可编程能力的设计问题,为框架设计师和广大开发人员设计高质量的软件提供了权威的指南,这一版更新至.NET 3.5。书中内容涉及框架设计的基本原则和规范,常用设计惯用法,为命名空间、类型、成员等框架各部分命名的规范,框架中常用设计模式的规范等。同时,书中添加了来自经验丰富的框架设计师、业界专家及用户给出的评注,为书中的许多规范增色不少。
本书为框架设计师之作,也可用作.NET开发人员的技术参考书。
书籍目录:
1 Introduction
1.1 Qualities of a Well-Designed Framework
1.1.1 Well-Designed Frameworks Are Simple
1.1.2 Well-Designed Frameworks Are Expensive to Design
1.1.3 Well-Designed Frameworks Are Full of Trade-Offs
1.1.4 Well-Designed Frameworks Borrow from the Past
1.1.5 Well-Designed Frameworks Are Designed to Evolve
1.1.6 Well-Designed Frameworks Are Integrated
1.1.7 Well-Designed Frameworks Are Consistent
2 Framework Design Fundamentals
2.1 Progressive Frameworks
2.2 Fundamental Principles of Framework Design
2.2.1 The Principle of Scenario-Driven Design
2.2.2 The Principle of Low Barrier to Entry
2.2.3 The Principle of Self-Documenting Object Models
2.2.4 The Principle of Layered Architecture
3 Naming Guidelines
3.1 Capitalization Conventions
3.1.1 Capitalization Rules for Identifiers
3.1.2 Capitalizing Acronyms
3.1.3 Capitalizing Compound Words and Common Terms
3.1.4 Case Sensitivity
3.2 General Naming Conventions
3.2.1 WordChoice
3.2.2 Using Abbreviations and Acronyms
3.2.3 Avoiding Language-Specific Names
3.2.4 Naming New Versions of Existing APIs
3.3 Names of Assemblies and DLLs
3.4 Names of Namespaces
3.4.1 Namespaces and Type Name Conflicts
3.5 Names of Classes, Structs, and Interfaces
3.5.1 Names of Generic Type Parameters
3.5.2 Names of Common Types
3.5.3 Naming Enumerations
3.6 Names of Type Members
3.6.1 Names of Methods
3.6.2 Names of Properties
3.6.3 Names of Events
3.6.4 Naming Fields
3.7 Naming Parameters
3.7.1 Naming Operator Overload Parameters
3.8 Naming Resources
4 Type Design Guidelines
4.1 Types and Namespaces
4.1.1 Standard Subnamespace Names
4.2 Choosing Between Class and Struct
4.3 Choosing Between Class and Interface
4.4 Abstract Class Design
4.5 Static Class Design
4.6 Interface Design
4.7 Struct Design
4.8 EnumDesign
4.8.1 Designing Flag Enums
4.8.2 Adding Values to Enums
4.9 Nested Types
4.10 Types and Assembly Metadata
5 MemberDesign
5.1 General Member Design Guidelines
5.1.1 Member Overloading
5.1.2 Implementing Interface Members Explicitly
5.1.3 Choosing Between Properties and Methods
5.2 Property Design
5.2.1 Indexed Property Design
5.2.2 Property Change Notification Events
5.3 Constructor Design
5.3.1 Type Constructor Guidelines
5.4 Event Design
5.4.1 Custom Event Handler Design
5.5 Field Design
5.6 Extension Methods
5.7 Operator Overloads
5.7.1 Overloading Operator ==
5.7.2 Conversion Operators
5.8 Parameter Design
5.8.1 Choosing Between Enum and Boolean Parameters
5.8.2 Validating Arguments
5.8.3 Parameter Passing
5.8.4 Members with Variable Number of Parameters
5.8.5 Pointer Parameters
6 Designing for Extensibility
6.1 Extensibility Mechanisms
6.1.1 Unsealed Classes
6.1.2 Protected Members
6.1.3 Events and Callbacks
6.1.4 Virtual Members
6.1.5 Abstractions (Abstract Types and Interfaces)
6.2 Base Classes
6.3 Sealing
7 Exceptions
7.1 Exception Throwing
7.2 Choosing the Right Type of Exception to Throw
7.2.1 Error Message Design
7.2.2 Exception Handling
7.2.3 Wrapping Exceptions
7.3 Using Standard Exception Types
7.3.1 ExceptCon and SystemExcept~on
7.3.2 AppL ~cat~onExcept~on
7.3.3 InvaL ~dOperat~onExceptCon
7.3.4 ArgumentExcept~on, ArgumentNuL LExcept~on, and ArgumentOutOfRangeExcept~on
7.3.5 NuL LReferenceExcept~on, IndexOutOfRangeExcept~on, and AccessVCoLatConExcept~on
7.3.6 StackOverfLowExcept~on
7.3.7 utOfMemoryExcept~on
7.3.8 ComExcept~on, SEHExceptCon, and Execut~onEng~ne-Exception
7.4 Designing Custom Exceptions
7.5 Exceptions and Performance
7.5.1 Tester-Doer Pattern
7.5.2 Try-Parse Pattern
8 Usage Guidelines
8.1 Arrays
8.2 Attributes
8.3 Collections
8.3.1 Collection Parameters
8.3.2 Collection Properties and Return Values
8.3.3 Choosing Between Arrays and Collections
8.3.4 Implementing Custom Collections
8.4 DateTime and DateTimeOffset
8.5 ICloneable
8.6 IComparable and IEquatable
8.7 IDisposable
8.8 Nuiiable
8.9 Object
8.9.1 Object. EquaLs
8.9.2 Object. GetHashCode
8.9.3 Object. ToStrlng271
8.10 Serialization
8.10.1 Choosing the Right Serialization Technology to Support
8.10.2 Supporting Data Contract Serialization
8.10.3 Supporting XML Serialization
8.10.4 Supporting Runtime Serialization
8.11 UrL 283
8.11.1 System. Urn. Implementation Guidelines
8.12 System.Xml Usage
8.13 Equality Operators
8.13.1 Equality Operators on Value Types
8.13.2 Equality Operators on Reference Types
9 Common Design Patterns
9.1 Aggregate Components
9.1.1 Component-Oriented Design
9.1.2 FactoredTypes
9.1.3 Aggregate Component Guidelines
9.2 The Async Patterns
9.2.1 Choosing Between the Async Patterns
9.2.2 Classic Async Pattern
9.2.3 Classic Async Pattern Basic Implementation Example
9.2.4 Event-Based Async Pattern
9.2.5 Supporting Out and Ref Parameters
9.2.6 Supporting Cancellation
9.2.7 Supporting Progress Reporting
9.2.8 Supporting Incremental Results
9.3 Dependency Properties
9.3.1 Dependency Property Design
9.3.2 Attached Dependency Property Design
9.3.3 Dependency Property Validation
9.3.4 Dependency Property Change Notifications
9.3.5 Dependency Property Value Coercion
9.4 Dispose Pattern
9.4.1 Basic Dispose Pattern
9.4.2 Finalizable Types
9.5 Factories
9.6 LINQ Support
9.6.1 Overview of LINQ
9.6.2 Ways of Implementing LINQ Support
9.6.3 Supporting LINQ through IEnumerabLe
9.6.4 Supporting LINQ through IOueryabLe~T~
9.6.5 Supporting LINQ through the Query Pattern
9.7 Optional Feature Pattern
9.8 Simulating Covariance
9.9 Template Method
9.10 Timeouts
9.11 XAML Readable Types
9.12 And in the End...
A C# Coding Style Conventions
A.1 General Style Conventions
A.1.1 Brace Usage
A.1.2 Space Usage
A.1.3 Indent Usage
A.1.4 Other 367
A.2 Naming Conventions
A.3 Comments
A.4 File Organization
B Using FxCop to Enforce the Framework Design Guidelines
B.1 What Is FxCop?
B.2 The Evolution of FxCop
B.3 How Does It Work?
B.4 FxCop Guideline Coverage
B.4.1 FxCop Rules for the Naming Guidelines
B.4.2 FxCop Rules for the Type Design Guidelines
B.4.3 FxCop Rules for Member Design
B.4.4 FxCop Rules for Designing for Extensibility
B.4.5 FxCop Rules for Exceptions
B.4.6 FxCop Rules for Usage Guidelines
B.4.7 FxCop Rules for Design Patterns
C Sample API Specification
Glossary
Suggested Reading List
Index
作者介绍:
Krzysztof Cwalina 微软公司.NET Framework开发组项目经理。他为.NET Framework设计了多个API,还开发了FxCop等框架开发工具。目前,他正致力于在微软内部开发推广设计规范,将其应用到.NET Framework中,同时负责核心.NET Framework API的交付。
Brad Abrams 微软公司CLR开发组和.NET Framework开发组的创始人之一,目前是项目经理主管。他参与制定了CLS、.NET Framework设计规范以及ECMA/ISO CLI标准中程序库标准,著有Programming in the .NET Environment、.NET Framework Standard Library Annotated Reference(卷1和卷2)等书。读者可以从他的博http://blogs.msdn.com/bradA/中了解他的最新想法。
出版社信息:
暂无出版社相关信息,正在全力查找中!
书籍摘录:
暂无相关书籍摘录,正在全力查找中!
在线阅读/听书/购买/PDF下载地址:
原文赏析:
暂无原文赏析,正在全力查找中!
其它内容:
书籍介绍
《.NET设计规范:约定、惯用法与模式(第2版·英文版)》关注直接影响框架可编程能力的设计问题,为框架设计师和广大开发人员设计高质量的软件提供了权威的指南,这一版更新至.NET 3.5。书中内容涉及框架设计的基本原则和规范,常用设计惯用法,为命名空间、类型、成员等框架各部分命名的规范,框架中常用设计模式的规范等。同时,书中添加了来自经验丰富的框架设计师、业界专家及用户给出的评注,为书中的许多规范增色不少。
《.NET设计规范:约定、惯用法与模式(第2版·英文版)》为框架设计师必读之作,也可用作.NET开发人员的技术参考书。
网站评分
书籍多样性:8分
书籍信息完全性:5分
网站更新速度:4分
使用便利性:5分
书籍清晰度:3分
书籍格式兼容性:7分
是否包含广告:6分
加载速度:6分
安全性:6分
稳定性:9分
搜索功能:5分
下载便捷性:4分
下载点评
- 速度慢(171+)
- 值得购买(353+)
- 图文清晰(321+)
- 无漏页(356+)
- 差评(543+)
- 推荐购买(578+)
- 章节完整(301+)
- 体验还行(266+)
- 书籍完整(413+)
- 藏书馆(415+)
- 一星好评(386+)
下载评价
- 网友 权***波:
收费就是好,还可以多种搜索,实在不行直接留言,24小时没发到你邮箱自动退款的!
- 网友 扈***洁:
还不错啊,挺好
- 网友 陈***秋:
不错,图文清晰,无错版,可以入手。
- 网友 师***怀:
好是好,要是能免费下就好了
- 网友 谢***灵:
推荐,啥格式都有
- 网友 益***琴:
好书都要花钱,如果要学习,建议买实体书;如果只是娱乐,看看这个网站,对你来说,是很好的选择。
- 网友 师***怡:
说的好不如用的好,真心很好。越来越完美
- 网友 屠***好:
还行吧。
- 网友 隗***杉:
挺好的,还好看!支持!快下载吧!
- 网友 印***文:
我很喜欢这种风格样式。
- 网友 菱***兰:
特好。有好多书
- 网友 谭***然:
如果不要钱就好了
- 网友 孙***夏:
中评,比上不足比下有余
- 网友 邱***洋:
不错,支持的格式很多
- 网友 家***丝:
好6666666
- 网友 步***青:
。。。。。好
喜欢".NET设计规范——约定、惯用法与模式(第2版·英文版)(附光盘)"的人也看了
测量技术基础 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
蚕体解剖生理学 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
图说时间简史(纯美悦读·32开彩色精装) 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
微分几何与拓扑学习题集 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
中国道教气功养生大全 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
对话CTO:驾驭高科技浪潮 [美]Scott Donaldson Stanley Siegel Gary Donaldson 著 人民邮电出版社,【正版可开发票】 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
中国文博名家画传:谢辰生 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
海外直订The Unofficial Harry Potter Beauty Potions Book: 40 Recipes from Dirig 非官方的哈利波特美容药水书:40个食谱从飞天李子泡 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
聊斋志异(珍藏版共60册) 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
9787205076603 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 插图本人类太空飞行简史(太空探索丛书) 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 胡萝卜须【正版书籍,满额减】 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 会计真账实操全图解 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 管理学(第二版)/王积瑾/王卫/浙江大学出版社 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 线性代数与空间解析几何学习指导 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 【正版库存轻度瑕疵】脸对脸 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 图说常见疾病自我诊查与疗养系列丛书·血液与造血系统健康:自查自防自养 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 【正版新书】基于气象模式的赤山湖流域洪水预报与调度 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 囚犯到明君 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 笨狼和小红帽典藏版 笨狼的故事系列插图非注音版 三四五六年级小学生课外阅读书籍8-10-12周岁儿童读物经典书目 新华正版 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
书籍真实打分
故事情节:7分
人物塑造:6分
主题深度:4分
文字风格:5分
语言运用:4分
文笔流畅:8分
思想传递:5分
知识深度:7分
知识广度:7分
实用性:8分
章节划分:9分
结构布局:6分
新颖与独特:4分
情感共鸣:5分
引人入胜:6分
现实相关:8分
沉浸感:5分
事实准确性:5分
文化贡献:4分