Force super class to not call overloaded methods of the subclass
3 ビュー (過去 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 件のコメント
回答 (1 件)
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.
参考
カテゴリ
Help Center および File Exchange で Subclass Definition についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!