Force super class to not call overloaded methods of the subclass
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a base class and subclass inheriting from it. Base class has method A. Subclass overloads that method. I want to force the base class to use (only in some places) it's own method, not the one overloaded by subclass. Is there any way to do it?
Thank you
0 comentarios
Respuestas (3)
Matt J
el 28 de Abr. de 2024
Editada: Matt J
el 28 de Abr. de 2024
In any superclass method, you can test whether the invoking object is of the base class or one of its children. Depending on the result of this test, you can clone the child's base component for the purposes of calling base methods only. The attachments give an example of this.
parent=myclass(1), child=mysubclass(1,2)
parent.callingMethod()
child.callingMethod()
child.callingMethod(scope="Parent")
1 comentario
Matt J
el 28 de Abr. de 2024
Editada: Matt J
el 28 de Abr. de 2024
You can also have the desired calling scope set through the a property, as in the attached modifications. This would be the better design if you want all methods to make this sort of scope check.
parent=myclass(1), child=mysubclass(1,2)
parent.callingMethod()
child.callingMethod()
child.callingScope="Parent";
child.callingMethod()
Shraddha Jain
el 22 de Jun. de 2021
Hi Naum,
When you create an object obj of a superclass and then use obj to call the overloaded (or any) method of the superclass, the method defined in the superclass is called and not the one of the subclass.
2 comentarios
A.B.
el 26 de Abr. de 2024
Editada: A.B.
el 26 de Abr. de 2024
I am facing the same issue in my code and I have been wasting a few weeks now to find out how I can prevent the SuperClass to call Subclass overloaded method. This is an absolutely silly OOP behavior in MATLAB. Why isn't there an easy way to do so?
Steven Lord
el 26 de Abr. de 2024
You can call a superclass method even if the subclass overloads or overrides that method only from within that method itself. So if the superclass and subclass both define a method foo(), inside the subclass foo() method you can call the superclass's foo() method.
You can also have the subclass's constructor call the superclass's constructor (even though they don't have the same name.)
3 comentarios
Steven Lord
el 26 de Abr. de 2024
I'm not sure I understand what you're trying to do. Can you describe in a little more detail what problem you're trying to solve (not how you're hoping to implement it; describe the why not the how), or perhaps what design pattern you're trying to implement? With that information we may be able to suggest an approach to achieve your goal (or explain if it smells a bit funny to us.)
A.B.
el 28 de Abr. de 2024
Editada: A.B.
el 28 de Abr. de 2024
The superclass has method make and premake. The subclass also overloads both methods. It appears any method within the superclass which is calling make or premake, calls the overloaded methods of the subclass (and not those of superclass). This behavior messes up everything. I sincerely hope I am doing something wrong, otherwise this behavior is completely counter intuitivie for me.
Ver también
Categorías
Más información sobre Construct and Work with Object Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!