Force super class to not call overloaded methods of the subclass
12 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(3 个)
Matt J
2024-4-28
编辑:Matt J
2024-4-28
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 个评论
Matt J
2024-4-28
编辑:Matt J
2024-4-28
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
2021-6-22
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 个评论
Steven Lord
2024-4-26
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 个评论
Steven Lord
2024-4-26
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.
2024-4-28
编辑:A.B.
2024-4-28
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Construct and Work with Object Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!