필터 지우기
필터 지우기

How do I view the properties of an abstract class?

조회 수: 10 (최근 30일)
Aaron Kaw
Aaron Kaw 2022년 5월 12일
답변: Steven Lord 2022년 5월 12일
For a class such as
classdef (Abstract) AbstractClassDemo
properties (Constant)
one = 1
two = 'two'
end
end
I should be using something like
meta.abstractDetails('AbstractClassDemo')
which returns the error
No abstract methods or properties for class AbstractClassDemo or no class AbstractClassDemo.
To confirm to you that AbstractClassDemo is visible and accessible, I run
AbstractClassDemo
which returns
Abstract classes cannot be instantiated. Class 'AbstractClassDemo' is declared as Abstract.
What alternative options do I have? I can't find anything else I can do. Am I doing something wrong above? Should be simple right?

채택된 답변

Steven Lord
Steven Lord 2022년 5월 12일
Call the properties function with the name of the Abstract class as input.
>> properties AbstractClassDemo
Properties for class AbstractClassDemo:
one
two
Alternately if you want additional information you could use either the ? operator or the meta.class.fromName function to create the meta.class object for the class. That object has an array of meta.property objects in its PropertyList property.
>> q = meta.class.fromName('AbstractClassDemo');
>> q = ?AbstractClassDemo;
>> propOne = q.PropertyList(1)
propOne =
property with properties:
Name: 'one'
Description: ''
DetailedDescription: ''
*snip the rest of the properties to keep this post short*

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Properties에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by