MATLAB: Can I find out if a class is an abstract class before trying to instantiate it

abstract class

Can i somehow say:
if isAbstract(className)
% do something
else
% do something else
end

Best Answer

A class is abstract if any of its properties or methods is abstract.
It's possible to write a function, is_abstract. Start:
mco = ?my_class
mco.PropertyList
mco.MethodList
any([mco.MethodList.Abstract])
.
or better
mcls = meta.class.fromName('ClassName')
Related Question