issubclass

版本 1.0.0.0 (1.6 KB) 作者: Jesse Hopkins
Determines if a class is a subclass of another class.
235.0 次下载
更新时间 2012/1/20

查看许可证

tf = issubclass(SubClassName,SuperClassName)
Returns true if the specified "SubClassName" is a subclass of
the class specified by "SuperClassName", otherwise returns false.

Inputs:
SubClassName: string. Name of the "Sub Class" that you are testing
to see if it was inherited from the specified
"SuperClass"

SuperClassName: string. Name of the "Super Class" that you are
testing to see if the sub-class was inherited from

Output:
tf: logical, true if "SubClassName" is in fact a subclass of "SuperClassName"

Examples:
>> tf = issubclass('MySubClass','MySuperClass')

>> x = MySubClass;
>> y = MySuperClass;
>> tf = issubclass(class(x),class(y);

引用格式

Jesse Hopkins (2024). issubclass (https://www.mathworks.com/matlabcentral/fileexchange/34706-issubclass), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2010b
兼容任何版本
平台兼容性
Windows macOS Linux
标签 添加标签
oop

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0