王朝网络
分享
 
 
 

.NET设计规范——约定、惯用法与模式(第2版·英文版)(附光盘)

王朝导购·作者佚名
 
.NET设计规范——约定、惯用法与模式(第2版·英文版)(附光盘)  点此进入淘宝搜索页搜索
  特别声明:本站仅为商品信息简介,并不出售商品,您可点击文中链接进入淘宝网搜索页搜索该商品,有任何问题请与具体淘宝商家联系。
  参考价格: 点此进入淘宝搜索页搜索
  分类: 图书,计算机/网络,程序设计,.NET ,

作者: (美)克瓦林纳,(美)艾布拉姆斯著

出 版 社: 人民邮电出版社

出版时间: 2010-1-1字数: 557000版次: 1页数: 443印刷时间: 2010-1-1开本: 16开印次: 1纸张: 胶版纸I S B N : 9787115214454包装: 平装内容简介

本书关注直接影响框架可编程能力的设计问题,为框架设计师和广大开发人员设计高质量的软件提供了权威的指南,这一版更新至.NET 3.5。书中内容涉及框架设计的基本原则和规范,常用设计惯用法,为命名空间、类型、成员等框架各部分命名的规范,框架中常用设计模式的规范等。同时,书中添加了来自经验丰富的框架设计师、业界专家及用户给出的评注,为书中的许多规范增色不少。

本书为框架设计师必读之作,也可用作.NET开发人员的技术参考书。

目录

1Introduction

1.1Qualities of a Well-Designed Framework

1.1.1Well-Designed Frameworks Are Simple

1.1.2Well-Designed Frameworks Are Expensive to Design

1.1.3Well-Designed Frameworks Are Full of Trade-Offs

1.1.4Well-Designed Frameworks Borrow from the Past

1.1.5Well-Designed Frameworks Are Designed to Evolve

1.1.6Well-Designed Frameworks Are Integrated

1.1.7Well-Designed Frameworks Are Consistent

2Framework Design Fundamentals

2.1Progressive Frameworks

2.2Fundamental Principles of Framework Design

2.2.1The Principle of Scenario-Driven Design

2.2.2The Principle of Low Barrier to Entry

2.2.3The Principle of Self-Documenting Object Models

2.2.4The Principle of Layered Architecture

3Naming Guidelines

3.1Capitalization Conventions

3.1.1Capitalization Rules for Identifiers

3.1.2Capitalizing Acronyms

3.1.3Capitalizing Compound Words and Common Terms

3.1.4Case Sensitivity

3.2General Naming Conventions

3.2.1WordChoice

3.2.2Using Abbreviations and Acronyms

3.2.3Avoiding Language-Specific Names

3.2.4Naming New Versions of Existing APIs

3.3Names of Assemblies and DLLs

3.4Names of Namespaces

3.4.1Namespaces and Type Name Conflicts

3.5Names of Classes, Structs, and Interfaces

3.5.1Names of Generic Type Parameters

3.5.2Names of Common Types

3.5.3Naming Enumerations

3.6Names of Type Members

3.6.1Names of Methods

3.6.2Names of Properties

3.6.3Names of Events

3.6.4Naming Fields

3.7Naming Parameters

3.7.1Naming Operator Overload Parameters

3.8Naming Resources

4Type Design Guidelines

4.1 Types and Namespaces

4.1.1Standard Subnamespace Names

4.2Choosing Between Class and Struct

4.3Choosing Between Class and Interface

4.4Abstract Class Design

4.5Static Class Design

4.6Interface Design

4.7Struct Design

4.8EnumDesign

4.8.1Designing Flag Enums

4.8.2Adding Values to Enums

4.9Nested Types

4.10Types and Assembly Metadata

5MemberDesign

5.1General Member Design Guidelines

5.1.1Member Overloading

5.1.2Implementing Interface Members Explicitly

5.1.3Choosing Between Properties and Methods

5.2Property Design

5.2.1Indexed Property Design

5.2.2Property Change Notification Events

5.3Constructor Design

5.3.1Type Constructor Guidelines

5.4Event Design

5.4.1Custom Event Handler Design

5.5Field Design

5.6Extension Methods

5.7Operator Overloads

5.7.1Overloading Operator ==

5.7.2Conversion Operators

5.8Parameter Design

5.8.1Choosing Between Enum and Boolean Parameters

5.8.2Validating Arguments

5.8.3Parameter Passing

5.8.4Members with Variable Number of Parameters

5.8.5Pointer Parameters

6Designing for Extensibility

6.1Extensibility Mechanisms

6.1.1Unsealed Classes

6.1.2Protected Members

6.1.3Events and Callbacks

6.1.4Virtual Members

6.1.5Abstractions (Abstract Types and Interfaces)

6.2Base Classes

6.3Sealing

7Exceptions

7.1Exception Throwing

7.2Choosing the Right Type of Exception to Throw

7.2.1Error Message Design

7.2.2Exception Handling

7.2.3Wrapping Exceptions

7.3Using Standard Exception Types

7.3.1ExceptCon and SystemExcept~on

7.3.2AppL ~cat~onExcept~on

7.3.3InvaL ~dOperat~onExceptCon

7.3.4ArgumentExcept~on, ArgumentNuL LExcept~on, and ArgumentOutOfRangeExcept~on

7.3.5NuL LReferenceExcept~on, IndexOutOfRangeExcept~on, and AccessVCoLatConExcept~on

7.3.6StackOverfLowExcept~on

7.3.7utOfMemoryExcept~on

7.3.8ComExcept~on, SEHExceptCon, and Execut~onEng~ne-Exception

7.4Designing Custom Exceptions

7.5Exceptions and Performance

7.5.1Tester-Doer Pattern

7.5.2Try-Parse Pattern

8Usage Guidelines

8.1Arrays

8.2Attributes

8.3Collections

8.3.1Collection Parameters

8.3.2Collection Properties and Return Values

8.3.3Choosing Between Arrays and Collections

8.3.4Implementing Custom Collections

8.4DateTime and DateTimeOffset

8.5ICloneable

8.6IComparableand IEquatable

8.7IDisposable

8.8Nuiiable

8.9Object

8.9.1Object. EquaLs

8.9.2Object. GetHashCode

8.9.3Object. ToStrlng271

8.10Serialization

8.10.1Choosing the Right Serialization Technology to Support

8.10.2Supporting Data Contract Serialization

8.10.3Supporting XML Serialization

8.10.4Supporting Runtime Serialization

8.11UrL 283

8.11.1System. Urn. Implementation Guidelines

8.12System.Xml Usage

8.13Equality Operators

8.13.1Equality Operators on Value Types

8.13.2Equality Operators on Reference Types

9Common Design Patterns

9.1Aggregate Components

9.1.1Component-Oriented Design

9.1.2FactoredTypes

9.1.3Aggregate Component Guidelines

9.2The Async Patterns

9.2.1Choosing Between the Async Patterns

9.2.2Classic Async Pattern

9.2.3Classic Async Pattern Basic Implementation Example

9.2.4Event-Based Async Pattern

9.2.5Supporting Out and Ref Parameters

9.2.6Supporting Cancellation

9.2.7Supporting Progress Reporting

9.2.8Supporting Incremental Results

9.3Dependency Properties

9.3.1Dependency Property Design

9.3.2Attached Dependency Property Design

9.3.3Dependency Property Validation

9.3.4Dependency Property Change Notifications

9.3.5Dependency Property Value Coercion

9.4Dispose Pattern

9.4.1Basic Dispose Pattern

9.4.2Finalizable Types

9.5Factories

9.6LINQ Support

9.6.1Overview of LINQ

9.6.2Ways of Implementing LINQ Support

9.6.3Supporting LINQ through IEnumerabLe

9.6.4Supporting LINQ through IOueryabLe~T~

9.6.5Supporting LINQ through the Query Pattern

9.7Optional Feature Pattern

9.8Simulating Covariance

9.9Template Method

9.10Timeouts

9.11XAML Readable Types

9.12And in the End...

AC# Coding Style Conventions

A.1General Style Conventions

A.1.1Brace Usage

A.1.2Space Usage

A.1.3Indent Usage

A.1.4Other 367

A.2Naming Conventions

A.3Comments

A.4File Organization

BUsing FxCop to Enforce the Framework Design Guidelines

B.1What Is FxCop?

B.2The Evolution of FxCop

B.3How Does It Work?

B.4FxCop Guideline Coverage

B.4.1FxCop Rules for the Naming Guidelines

B.4.2FxCop Rules for the Type Design Guidelines

B.4.3FxCop Rules for Member Design

B.4.4FxCop Rules for Designing for Extensibility

B.4.5FxCop Rules for Exceptions

B.4.6FxCop Rules for Usage Guidelines

B.4.7FxCop Rules for Design Patterns

CSample API Specification

Glossary

Suggested Reading List

Index

 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
>>返回首页<<
推荐阅读
 
 
频道精选
 
更多商品
2010版中医执业医师资格考试复习应试全书(全二册)
海蒂诗弹簧铰链2只 26毫米 全金属 全盖49636
海蒂诗气动弹簧80N 银色框门49620
2010版简明药物手册
《在延安文艺座谈会上的讲话》研究
近代史:中国通史/傅乐成主编
海蒂诗气动弹簧80N 银色普通门49610
数学:六年级(下)(人教版)——点亮智慧A+作业本
海蒂诗插尾铰链 半盖(经济型)49600
数学:六年级(下)(国标江苏版)——点亮智慧A+作业本
 
静静地坐在废墟上,四周的荒凉一望无际,忽然觉得,凄凉也很美
© 2005- 王朝网络 版权所有