Please Help Me About Sub and Super Classes
Show older comments
Hello, I am trying to learn classes in Matlab here is a basic question. How can I write two classes A and B in order to represent following structur?
My first class is A and second class is B. Let A has two property as p and q and B has also two property as m and n. Moreover, one of class is subclasses of other.
A.p=1;
A.q=2;
B.m=3;
B.n=4;
A.B=B; %Minor question :) which one is a subclass A or B?
%Hence
A.B.m %should be 3
A.B.n %should be 4
3 Comments
per isakson
on 16 May 2013
Search for "Defining a Subclass" in the help. As far I can judge, you describe an association.
Volkan Kandemir
on 16 May 2013
Edited: Volkan Kandemir
on 16 May 2013
per isakson
on 16 May 2013
You have defined A as a subclass of B and the result you see is as documented, i.e. what you should expect.
Accepted Answer
More Answers (0)
Categories
Find more on Construct and Work with Object Arrays in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!