Abstract Method Signature Definition

14 ビュー (過去 30 日間)
gire
gire 2013 年 10 月 18 日
回答済み: Anand Swaroop 2021 年 12 月 7 日
Hello,
I want an abstract class in which an abstract method called "RunModel" is defined. Nevertheless, this " RunModel " does receive different parameters depending on the child class. For Example
  • classX_instance.RunModel()
  • classY_instance.RunModel(param1, param2)
  • classZ_instance.RunModel(param1)
What is the best way to define the abstract method in the abstract class? I have noticed that if I simply define it as:
methods(Abstract=true, Access=public)
RunModel(this);
end
it actually works, but I have an uneasy feeling about it. Is there a better way to do it?
Thanks

回答 (1 件)

Anand Swaroop
Anand Swaroop 2021 年 12 月 7 日
your definition of abstract method is absolutly correct. by default access property of a mathod is public. So you can omit it to reduce signature. you can write your mentioned example as following
method(Abstract)
RunModel(this);
end
this might suit well to your expectation.
for more information you can read following documentation
Thanks
Anand Swaroop

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by