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

Sam · Nov 3, 2023 · 2K views
Question
Can i somehow say:   if isAbstract(className)   % do something else % do something else end
Expert Answer
Profile picture of Kshitij Singh
Kshitij Singh PhD Expert
Answered Nov 20, 2025
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')

 

Have a different question? Ask here

Get a Free Consultation or a Sample Assignment Review!