nsISupports 编辑
xpcom/base/nsISupports.idl
Scriptable All XPCOM interfaces inherit this interface. Last changed in Gecko 1.0Method overview
nsrefcnt AddRef(); Violates the XPCOM interface guidelines |
void QueryInterface(in nsIIDRef uuid, [iid_is(uuid),retval] out nsQIResult result); |
nsrefcnt Release(); Violates the XPCOM interface guidelines |
Methods
Violates the XPCOM interface guidelinesAddRef()
Notifies the object that an interface pointer has been duplicated.
nsrefcnt AddRef();
Parameters
None.
Return value
An integer value that is generally ignored.
QueryInterface()
The QueryInterface method provides runtime type discovery.
Note: The interface pointer, aResult
, returned by QueryInterface
must be released by a call to Release()
when it is no longer needed. QueryInterface
is a symmetric, transitive, and reflexive operator.
void QueryInterface( in nsIIDRef uuid, [iid_is(uuid),retval] out nsQIResult result );
Parameters
uuid
- The
uuid
of the requested interface result
- The resulting interface pointer.
Exceptions thrown
NS_ERROR_NO_INTERFACE
- The requested interface is not available.
Release()
Notifies the object that an interface pointer has been destroyed and any resources the object held on behalf of the client can be released.
nsrefcnt Release();
Parameters
None.
Return value
An integer value that is generally ignored.
Remarks
The method descriptions above were taken from Essential COM by Don Box. The point of those descriptions is to highlight the fact that AddRef()
and Release()
do not necessarily correspond to incrementing and decrementing a counter, respectively, even though that is how they are usually implemented.
On Win32 systems, nsISupports
is ABI-compatible with Microsoft COM's IUnknown
interface.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论