比
比尔
Unregistered / Unconfirmed
GUEST, unregistred user!
请问
IMyInterface = interface(IDispatch)
end;
和
IMyInterface = dispinterface
end;
有什么区别?
为什么第二种定义的接口不能用于如下的类定义中?
TMyObj = class(TObject ,IMyInterface) //说IMyInterface不是一个接口
end;
IMyInterface = interface(IDispatch)
end;
和
IMyInterface = dispinterface
end;
有什么区别?
为什么第二种定义的接口不能用于如下的类定义中?
TMyObj = class(TObject ,IMyInterface) //说IMyInterface不是一个接口
end;