Why subclass & superclass in OOP?

77 views (last 30 days)
J. Hu
J. Hu on 11 Oct 2013
Commented: Cedric on 11 Oct 2013
I am a beginner in OOP. So far I found it very powerful. However, there is one concept, subclass & superclass, I do not understand very well. And do not know how to implement it but I am thinking I can utilize for my problem.
Could somebody explain to me with some example? What are the advantages?
Here is the problem I am dealing with. It is o describe objects in a room which contains many objects(child) like desks, tables, and other furniture. The room and the furniture have their own properties. I use a class for each of them as shown below. Calculations are to be done using the properties.
Some calculation to be done for subclass (child class like desk) needs to use properties of the superclass room. Some calculation to be done for superclass (child class like desk) needs to use properties of the subclass room.
So I am thinking the advantage of defining this type super/sub class relation is to help the reference to the properties of each other. What are other good applications. Otherwise, I can just define them as parallel class and include each other as input argument for function definitions. What difference does it, declaring super/subclass, make?
Thanks...
classdef room
properties
length
width
depth
end
end;
classdef desk < room
properties
size
color
weight
end
end

Accepted Answer

Cedric
Cedric on 11 Oct 2013
Edited: Cedric on 11 Oct 2013
I am not sure that the room should be a super class for the desk actually, in the sense that the desk is not a specific type of room. Now technically nothing prevents you to implement your first idea. Let me propose another approach though, that should be more useful for illustrating how OOP works. We start with a class Furniture that we will use as superclass for classes representing more specific pieces of furniture in the room (superclasses are less specific than their subclasses).
classdef Furniture
properties
type, color, height, width, depth
end
methods
function obj = Furniture( color, height, width, depth, type )
% Method FURNITURE (constructor)
obj.color = color ;
obj.height = height ;
obj.width = width ;
obj.depth = depth ;
if nargin < 5
obj.type = 'generic' ;
else
obj.type = type ;
end
end
end
end
Now we create a subclass Desk, which is more specific than Furniture:
classdef Desk < Furniture
properties
nDrawers
end
methods
function obj = Desk( color, height, width, depth, nDrawers )
% Method DESK (constructor)
% - Call superclass constructor.
obj = obj@Furniture( color, height, width, depth, 'desk' ) ;
% - Define Desk specific properties.
obj.nDrawers = nDrawers ;
end
end
end
Inheritance provides Desk with all the properties/methods of Furniture, and you can see that we add one property to Desk, which is the number of drawers. Now we can create desks
>> d1 = Desk( 'brown', 1, 2, 1, 7 ) ;
>> d2 = Desk( 'black', 1.5, 3, 1, 10 ) ;
and display their properties (observe that properties of Furniture are there)
>> d1
d1 =
Desk
Properties:
nDrawers: 7
type: 'desk'
color: 'brown'
height: 1
width: 2
depth: 1
>> d2
d2 =
Desk
Properties:
nDrawers: 10
type: 'desk'
color: 'black'
height: 1.5000
width: 3
depth: 1
Let's now do the same for classrooms. We start by defining the more generic class Room, as follows:
classdef Room < handle
properties
type, surfaceArea, hasWindow, hasElectricity, furnitureList
end
methods
function obj = Room( surfaceArea, hasWindow, hasElectricity, type )
% Method ROOM (constructor)
obj.surfaceArea = surfaceArea ;
obj.hasWindow = hasWindow ;
obj.hasElectricity = hasElectricity ;
obj.furnitureList = {} ;
if nargin < 4
obj.type = 'generic' ;
else
obj.type = type ;
end
end
function fId = addFurniture( obj, furniture )
% Method ADDFURNITURE
fId = numel( obj.furnitureList ) + 1 ;
obj.furnitureList{fId} = furniture ;
end
end
end
As you can see, I added a method for adding furniture to the room object. Now we define a more specific class Classroom:
classdef Classroom < Room
properties
hasBlackboard
end
methods
function obj = Classroom( surfaceArea, hasWindow, hasElectricity, hasBlackboard )
% Method CLASSROOM (constructor)
% - Call superclass constructor.
obj = obj@Room( surfaceArea, hasWindow, hasElectricity, 'classroom' ) ;
% - Define Classroom specific properties.
obj.hasBlackboard = hasBlackboard ;
end
end
end
As you can see, Classroom is more specific than Room, because it inherits all properties of Room and has one extra property hasBlackboard. Classroom also inherits the method addFurniture of Rooom. At this point we can create a classroom..
>> cr = Classroom( 100, true, true, true ) ;
and display its properties..
>> cr
cr =
Classroom handle
Properties:
hasBlackboard: 1
type: 'classroom'
surfaceArea: 100
hasWindow: 1
hasElectricity: 1
furnitureList: {}
For the moment it has no furniture, so the property furnitureList is an empty cell. Let's add the two desks that we created previously and display again properties..
>> cr.addFurniture( d1 ) ;
>> cr.addFurniture( d2 ) ;
>> cr
cr =
Classroom handle
Properties:
hasBlackboard: 1
type: 'classroom'
surfaceArea: 100
hasWindow: 1
hasElectricity: 1
furnitureList: {[1x1 Desk] [1x1 Desk]}
Now the two desks are stored in furnitureList. We can display their properties, just to check..
>> cr.furnitureList{1}
ans =
Desk
Properties:
nDrawers: 7
type: 'desk'
color: 'brown'
height: 1
width: 2
depth: 1
>> cr.furnitureList{2}
ans =
Desk
Properties:
nDrawers: 10
type: 'desk'
color: 'black'
height: 1.5000
width: 3
depth: 1
Ok, it works! As you can see, Desk is not a subclass of Room here, but of the more generic (hence superclass) class Furniture. Similarly, Classroom is a subclass of the more generic class Room. Then Room has a property furnitureList for storing furniture objects, but there is no sub/superclass relationship between Furniture or Desk and Room or Classroom.
For more information, please refer to the official doc about OOP in MATLAB. I wrote this little example just to help you starting with the material.
  2 Comments
J. Hu
J. Hu on 11 Oct 2013
Awesome. Thanks a lot...
Cedric
Cedric on 11 Oct 2013
You're welcome.

Sign in to comment.

More Answers (1)

per isakson
per isakson on 11 Oct 2013
Edited: per isakson on 11 Oct 2013
Your question requires more than an answer here.
See the Matlab documentation.
There are many introductions to oop on the net (however, not Matlab specific). Google.
The first two thirds of this might be helpful: Introduction to Object Oriented Programming Concepts (OOP) and More. See especially
  • "What is the difference between Association, Aggregation and Composition?".
  • "What is Inheritance?"
Understand "is-a" and "has-a".
desk is not a specialization of room; not a type of room; thus not an appropriate subclass of room.
  1 Comment
J. Hu
J. Hu on 11 Oct 2013
Got you. subclass has to a specialization of its superclass. Thanks...

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!