TObject::GetInterfaceTable:获取接口表
函数原型:
__classmethod PInterfaceTable __fastcall GetInterfaceTable(); |
头文件:
#include <System.hpp>
命名空间:
System
参数:
无
返回值:
接口表。
GetInterfaceTable 只返回当前类实现的接口,不包含父类的,
如果要返回父类的接口,需要调用 ClassParent 获取父类然后再获取父类的接口。
返回指定的接口项目,可以使用 GetInterfaceEntry。
兼容性:
函数 \ C++ Builder 编译器 |
bcc32 |
clang32 |
clang64 |
TObject::GetInterfaceTable |
√ |
√ |
√ |
相关链接:
• GetInterface • GetInterfaceEntry • ClassParent • TObject • VCL基础类
|