ورود به حساب

نام کاربری گذرواژه

گذرواژه را فراموش کردید؟ کلیک کنید

حساب کاربری ندارید؟ ساخت حساب

ساخت حساب کاربری

نام نام کاربری ایمیل شماره موبایل گذرواژه

برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید


09117307688
09117179751

در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید

دسترسی نامحدود

برای کاربرانی که ثبت نام کرده اند

ضمانت بازگشت وجه

درصورت عدم همخوانی توضیحات با کتاب

پشتیبانی

از ساعت 7 صبح تا 10 شب

دانلود کتاب Object-Oriented Thought Process, 3rd Edition

دانلود کتاب فرآیند تفکر شی گرا ، چاپ سوم

Object-Oriented Thought Process, 3rd Edition

مشخصات کتاب

Object-Oriented Thought Process, 3rd Edition

ویرایش:  
نویسندگان:   
سری:  
ISBN (شابک) : 9780672330162 
ناشر: Addison-Wesley 
سال نشر: 2008 
تعداد صفحات: 347 
زبان: English 
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) 
حجم فایل: 4 مگابایت 

قیمت کتاب (تومان) : 34,000



ثبت امتیاز به این کتاب

میانگین امتیاز به این کتاب :
       تعداد امتیاز دهندگان : 14


در صورت تبدیل فایل کتاب Object-Oriented Thought Process, 3rd Edition به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.

توجه داشته باشید کتاب فرآیند تفکر شی گرا ، چاپ سوم نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.


توضیحاتی در مورد کتاب فرآیند تفکر شی گرا ، چاپ سوم

برنامه نویسی شی گرا (OOP) پایه و اساس زبان های برنامه نویسی مدرن از جمله C++، جاوا، سی شارپ و ویژوال بیسیک دات نت است. با طراحی با اشیاء به جای تلقی کد و داده به عنوان موجودیت های جداگانه، OOP به اشیا اجازه می دهد تا به طور کامل از خدمات اشیاء دیگر و همچنین به ارث بردن عملکرد آنها استفاده کنند. OOP قابلیت حمل و استفاده مجدد کد را ترویج می کند، اما برای درک کامل نیاز به تغییر در تفکر دارد. قبل از اینکه وارد دنیای زبان های برنامه نویسی شی گرا شوید، ابتدا باید بر فرآیند تفکر شی گرا مسلط شوید.


توضیحاتی درمورد کتاب به خارجی

Object-oriented programming (OOP) is the foundation of modern programming languages, including C++, Java, C#, and Visual Basic .NET. By designing with objects rather than treating the code and data as separate entities, OOP allows objects to fully utilize other objects' services as well as inherit their functionality. OOP promotes code portability and reuse, but requires a shift in thinking to be fully understood. Before jumping into the world of object-oriented programming languages, you must first master The Object-Oriented Thought Process.



فهرست مطالب

The Object-Oriented Thought Process, Third Edition......Page 1
Table of Contents......Page 7
Introduction......Page 18
1 Introduction to Object-Oriented Concepts......Page 22
Procedural Versus OO Programming......Page 23
Procedural Programming......Page 26
Object Data......Page 27
Object Behaviors......Page 28
What Exactly Is a Class?......Page 31
Classes Are Object Templates......Page 32
Messages......Page 34
Using UML to Model a Class Diagram......Page 35
Interfaces......Page 36
A Real-World Example of the Interface/Implementation Paradigm......Page 37
A Model of the Interface/Implementation Paradigm......Page 38
Inheritance......Page 39
Abstraction......Page 40
Polymorphism......Page 42
Composition......Page 45
Conclusion......Page 46
Example Code Used in This Chapter......Page 47
2 How to Think in Terms of Objects......Page 54
Knowing the Difference Between the Interface and the Implementation......Page 55
The Implementation......Page 57
An Interface/Implementation Example......Page 58
Using Abstract Thinking When Designing Interfaces......Page 62
Giving the User the Minimal Interface Possible......Page 64
Environmental Constraints......Page 65
Identifying the Public Interfaces......Page 66
Conclusion......Page 67
References......Page 68
Constructors......Page 70
The Default Constructor......Page 71
Using Multiple Constructors......Page 72
The Design of Constructors......Page 76
Checking for Problems and Aborting the Application......Page 77
Throwing an Exception......Page 78
The Concept of Scope......Page 80
Local Attributes......Page 81
Object Attributes......Page 82
Class Attributes......Page 84
Operator Overloading......Page 85
Multiple Inheritance......Page 86
Object Operations......Page 87
References......Page 88
Example Code Used in This Chapter......Page 89
The Name of the Class......Page 92
Attributes......Page 94
Constructors......Page 96
Accessors......Page 97
Private Implementation Methods......Page 100
Example Code Used in This Chapter......Page 101
Modeling Real World Systems......Page 104
The Minimum Public Interface......Page 105
Designing Robust Constructors (and Perhaps Destructors)......Page 106
Designing Error Handling into a Class......Page 107
Documenting a Class and Using Comments......Page 108
Making Names Descriptive......Page 109
Providing a Way to Copy and Compare Objects......Page 110
Keeping the Scope as Small as Possible......Page 111
A Class Should Be Responsible for Itself......Page 112
Designing with Maintainability in Mind......Page 113
Testing the Interface......Page 114
Using Object Persistence......Page 116
Conclusion......Page 117
Example Code Used in This Chapter......Page 118
Design Guidelines......Page 120
Gathering the Requirements......Page 124
Determining the Responsibilities of Each Class......Page 125
Case Study: A Blackjack Example......Page 126
Using CRC Cards......Page 128
Identifying the Blackjack Classes......Page 129
Identifying the Classes’ Responsibilities......Page 132
UML Use-Cases: Identifying the Collaborations......Page 137
First Pass at CRC Cards......Page 141
UML Class Diagrams: The Object Model......Page 143
Conclusion......Page 144
References......Page 145
Reusing Objects......Page 146
Inheritance......Page 147
Generalization and Specialization......Page 150
Design Decisions......Page 151
Composition......Page 152
Representing Composition with UML......Page 153
Why Encapsulation Is Fundamental to OO......Page 155
How Inheritance Weakens Encapsulation......Page 156
Object Responsibility......Page 158
Conclusion......Page 162
Example Code Used in This Chapter......Page 163
Code: To Reuse or Not to Reuse?......Page 168
What Is a Framework?......Page 169
What Is a Contract?......Page 170
Abstract Classes......Page 171
Interfaces......Page 174
Tying It All Together......Page 176
The Compiler Proof......Page 178
Making a Contract......Page 179
An E-Business Problem......Page 182
The Non-Reuse Approach......Page 183
The UML Object Model......Page 185
Example Code Used in This Chapter......Page 190
Composition Relationships......Page 196
Building in Phases......Page 198
Aggregations......Page 200
Associations......Page 201
Using Associations and Aggregations Together......Page 202
Cardinality......Page 203
Multiple Object Associations......Page 206
Optional Associations......Page 207
Tying It All Together: An Example......Page 208
References......Page 209
What Is UML?......Page 210
The Structure of a Class Diagram......Page 211
Attributes......Page 213
Access Designations......Page 214
Inheritance......Page 215
Interfaces......Page 217
Associations......Page 218
Cardinality......Page 221
References......Page 222
Portable Data......Page 224
XML Versus HTML......Page 226
XML and Object-Oriented Languages......Page 227
Sharing Data Between Two Companies......Page 228
Validating the Document with the Document Type Definition (DTD)......Page 229
Integrating the DTD into the XML Document......Page 230
Using Cascading Style Sheets......Page 237
References......Page 240
Persistent Objects Basics......Page 242
Serializing a File......Page 244
Implementation and Interface Revisited......Page 246
Using XML in the Serialization Process......Page 248
Writing to a Relational Database......Page 251
Accessing a Relational Database......Page 253
Making the Connection......Page 255
The SQL Statements......Page 256
Example Code Used in This Chapter......Page 259
Evolution of Distributed Computing......Page 264
Object-Based Scripting Languages......Page 265
A JavaScript Validation Example......Page 267
Objects in a Web Page......Page 270
JavaScript Objects......Page 271
Web Page Controls......Page 272
Movie Players......Page 274
Distributed Objects and the Enterprise......Page 275
The Common Object Request Broker Architecture (CORBA)......Page 276
Web Services Definition......Page 280
Invoice.cs......Page 284
Invoice.vb......Page 285
References......Page 287
Client/Server Approaches......Page 288
Serialized Object Code......Page 289
Client Code......Page 290
Server Code......Page 292
Running the Proprietary Client/Server Example......Page 293
Object Definition Code......Page 295
Client Code......Page 297
Server Code......Page 298
Conclusion......Page 300
Example Code Used in This Chapter......Page 301
15 Design Patterns......Page 304
Why Design Patterns?......Page 305
Smalltalk’s Model/View/Controller......Page 306
Types of Design Patterns......Page 307
Creational Patterns......Page 308
Structural Patterns......Page 312
Behavioral Patterns......Page 315
Antipatterns......Page 316
References......Page 317
Example Code Used in This Chapter......Page 318
A......Page 326
B......Page 327
C......Page 328
D......Page 333
F......Page 335
I......Page 336
J......Page 337
M......Page 338
N......Page 339
O......Page 340
P-Q......Page 343
S......Page 344
U......Page 346
X-Y-Z......Page 347




نظرات کاربران