By Matt Weisfeld

An advent to object-oriented options for builders trying to grasp sleek software practices.
Object-oriented programming (OOP) is the basis of recent programming languages, together with C++, Java, C#, and visible easy .NET. by way of designing with gadgets instead of treating the code and information as separate entities, OOP permits items to totally make the most of different gadgets’ providers in addition to inherit their performance. OOP promotes code portability and reuse, yet calls for a shift in pondering to be absolutely understood. prior to leaping into the area of object-oriented programming languages, you want to first grasp The Object-Oriented inspiration Process.
Written by means of a developer for builders who have the desire to make the bounce to object-oriented applied sciences in addition to managers who easily are looking to comprehend what they're handling, The Object-Oriented suggestion Process presents a solution-oriented method of object-oriented programming. Readers will learn how to comprehend object-oriented layout with inheritance or composition, item aggregation and organization, and the adaptation among interfaces and implementations. Readers also will turn into extra effective and higher thinkers when it comes to object-oriented development.
This revised version specializes in interoperability throughout quite a few applied sciences, essentially utilizing XML because the conversation mechanism. A extra special concentration is put on how enterprise gadgets function over networks, together with client/server architectures and net services.
“Programmers who goal to create prime quality software–as all programmers should–must research the various subtleties of the primary but now not so known beasts known as gadgets and periods. Doing so involves cautious learn of books resembling Matt Weisfeld’s The Object-Oriented notion Process.” – invoice McCarty, writer of Java dispensed Objects, and Object-Oriented layout in Java.
Matt Weisfeld is an affiliate professor in company and know-how at Cuyahoga group university in Cleveland, Ohio. He has greater than twenty years of expertise as a qualified software program developer, undertaking supervisor, and company coach utilizing C++, Smalltalk, .NET, and Java. He holds a BS in platforms research, an MS in laptop technological know-how, and an MBA in undertaking administration. Weisfeld has released many articles in significant laptop alternate magazines journals.

Show description

Read or Download The object-oriented thought process PDF

Similar object-oriented software design books

Java & XML: Solutions to Real-World Problems

With the XML ''buzz'' nonetheless dominating speak between net builders, there is a genuine have to find out how to minimize during the hype and positioned XML to paintings. Java & XML exhibits the best way to use the APIs, instruments, and tips of XML to construct real-world purposes. the result's code and information which are transportable. This moment version provides chapters on complex SAX and complicated DOM, new chapters on cleaning soap and knowledge binding, and new examples all through.

Data Structures for Computational Statistics

Because the starting of the seventies desktop is offered to take advantage of programmable pcs for numerous initiatives. through the nineties the has built from the massive major frames to private workstations. these days it's not in simple terms the that is even more strong, yet workstations can do even more paintings than a first-rate body, in comparison to the seventies.

Object-Oriented Analysis, Design and Implementation: An Integrated Approach

The second one variation of this textbook comprises revisions in line with the suggestions at the first variation. In a brand new bankruptcy the authors supply a concise advent to the rest of UML diagrams, adopting an identical holistic strategy because the first variation. utilizing a case-study-based strategy for delivering a complete advent to the foundations of object-oriented layout, it includes:A sound footing on object-oriented options akin to periods, gadgets, interfaces, inheritance, polymorphism, dynamic linking, and so forth.

Additional resources for The object-oriented thought process

Sample text

For example, the state of an object can be saved in a database. However, in the current business environment, relational-to-object mapping is a great solution. Many companies have integrated these technologies. It is common for a company to have a website front-end interface with data on a mainframe. If you create a totally OO system, an OO database might be a viable (and better performing) option; however, OO databases have not experienced anywhere near the growth that OO languages have. Standalone Application Even when creating a new OO application from scratch, it might not be easy to avoid legacy data.

Thus, you add interfaces only when it is requested. Never assume that the user needs something. To illustrate, there are many middleware products on the market today. There are OO databases on the market today that are perfect for OO applications. However, there is one small problem: Most companies have years of data in legacy relational database systems. How can a company embrace OO technologies and stay on the cutting edge while retaining its data in a relational database? First, you can convert all your legacy, relational data to a brand-new OO database.

An Implementation Issue Be aware that there is not necessarily a physical copy of each method for each object. Rather, each object points to the same implementation. However, this is an issue left up to the compiler/operating platform. From a conceptual level, you can think of objects as being wholly independent and having their own attributes and methods. What Exactly Is a Class? When you instantiate an object, you use a class as the basis for how the object is built. In fact, trying to explain classes and objects is really a chicken-and-egg dilemma.

Download PDF sample

Rated 4.10 of 5 – based on 32 votes