530 likes | 689 Views
“Object-orientation” – what is it all about?. Gill Harrison, Innovation North. Aims and Objectives this week. To appreciate what is meant by “object-orientation’ how it arose why it is a useful approach. What is Object-Orientation?.
E N D
“Object-orientation” – what is it all about? Gill Harrison, Innovation North
Aims and Objectives this week To appreciate • what is meant by “object-orientation’ • how it arose • why it is a useful approach
What is Object-Orientation? • A method of writing programs and developing software that is “oriented” (or orientated or directed) towards the use of objects
What are objects? A software object is
What are objects? A software object issomething which holds both
What are objects? A software object is something which holds bothdata
What are objects? A software object is something which holds bothdata
What are objects? Stock object A software object is something which holds bothdata Stock CodeDescriptionNumber in StockUnit cost
What are objects? Stock object A software object is something which holds bothdataand the program instructions (organised into “methods”) for processing that data Stock CodeDescriptionNumber in StockUnit cost
What are objects? Stock object A software object is something which holds bothdataand the program instructions (organised into“methods”)for processing that data Stock CodeDescriptionNumber in StockUnit cost
What are objects? Stock object A software object is something which holds bothdataand the program instructions (organised into“methods”)for processing that data Stock CodeDescriptionNumber in StockUnit costMethod to change the Number in StockMethod to calculate value
How is a system built? One object can send a “message” to another asking it to perform one of its methods on its data
How is a system built? One object can send a “message” to another asking it to perform one of its methods on its data Stock object Stock CodeDescriptionNumber in StockUnit costMethod to change the Number in StockMethod to calculate value
How is a system built? One object can send a “message” to another asking it to perform one of its methods on its data Stock object Stock CodeDescriptionNumber in StockUnit costMethod to change the Number in StockMethod to calculate value an object dealing with goods received
How is a system built? One object can send a “message” to another asking it to perform one of its methods on its data Stock object Stock CodeDescriptionNumber in StockUnit costMethod to change the Number in StockMethod to calculate value increase your number in stock by 1000 an object dealing with goods received
If you’re interested (this is Java)... public class Stock { private String stockCode, description; private int numberInStock, unitCost; public void changeNumberInStock(.......) { some lines of program code here } public float calculateValue() { lines of code } } data methods
If you have met programs before.. You will realise that programs generally have • variables to hold data • procedures and functions, which seem to be like methods • calls to these procedures and functions, which seem like messages • So what’s new about objects?
Encapsulation The details of data and methods are shielded from outside view or interference. This is called “encapsulation”. Stock CodeDescriptionNumber in StockUnit costMethod to change the Number in StockMethod to calculate value
Encapsulation The details of data and methods are shielded from outside view or interference. This is called“encapsulation”. Stock CodeDescriptionNumber in StockUnit costMethod to change the Number in StockMethod to calculate value
Encapsulation The details of data and methods are shielded from outside view or interference. This is called“encapsulation”. Just send me messages and I’ll send replies
A bit of history • Objects arose via programming languages rather than via Analysis and Design • In the 1960s, the first language to use objects was Simula, a simulation language. A vehicle or a lift could be modelled more easily this way
A bit of history • in the 1970s, an important research team at Xerox Palo Alto Research Centre (Xerox PARC) produced • ideas about Graphical User Interfaces (GUIs) and • Smalltalk - the first pure O-O language • Programs with GUIs are “event-driven” - these are much easier to write if you use software objects
Object-oriented Programming languages • Simula - a simulation language • Smalltalk - the first pure O-O language • Eiffel • C++ (C with objects) • Java
Features of object-orientation • We define a general class of objects we are interested in, e.g. students, customers, orders • A specific individual of the class is called an object, or an instance • We define attributes of the class, which will have particular values for each instance • We define methods for the class, which any instance will be able to carry out in response to a message
Objects and Entities OBJECTS ENTITIES class is like entity type instance is like occurrence attribute is like attribute? method has no equivalent -
Objects and Entities Objects seem like entities, with processing added in. But ERDs show entities and DFDs show processing.
absorbs bits of processing Hey, I’m an object!
Evolution of Systems Analysis and Design methods • Methods using Structure Charts and Data Flow Diagrams • ..... plus Entity Relationship Diagrams • Object-Oriented Analysis and Design Methods
Relative maturity Mature Immature O-O Programming Languages O-O Databases O-O Analysis and Design
Object-Oriented Analysis and Design Methods Lots, often associated with the name of a person: • Rumbaugh - Object Modeling Technique (OMT) • Jacobsen - Object Oriented Software Engineering (OOSE) • Booch • Coad and Yourdon • Wirfs-Brock • Schlaer and Mellor
Object-Oriented Analysis and Design Methods Lots, often associated with the name of a person: • Rumbaugh - Object Modeling Technique (OMT) • Jacobsen- Object Oriented Software Engineering(OOSE) • Booch • Coad and Yourdon • Wirfs-Brock • Schlaer and Mellor have combined to create Unified Modeling Language (UML)
What use is it? • Stock balance now held as • balance at stock-taking • total number received since then • total number issued since then • Without objects - detailed changes to every program that deals with stock • With objects - just change stock methods: other objects send the same messages as before
What use is it? • Resilience to change - data is stable, processing is not • Small changes are localised • Far better chance of reusing objects than of reusing separate data and processes • Standard classes (e.g. for GUI features like buttons, list boxes) make software development faster and easier