- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试了解 pywin32 的 COM 服务器示例,并在 win32comext/shell/demos/servers/icon_handler.py
中我看到了这一行
_com_interfaces_ = [shell.IID_IExtractIcon, pythoncom.IID_IPersistFile]
虽然这很清楚地指的是 IconHandler
必须实现IExtractIcon
和 IPersistFile
接口(interface),我找不到任何实际使用 _com_interfaces_
的文档。在 win32com.server.register
或 win32com.server.localserver.py
中看不到它,因此注册和服务器调用似乎都没有实际使用它。有关于 _com_interfaces_
的任何文档吗?
最佳答案
_com_interfaces_
是可选属性 a Server Policy寻找:
_com_interfaces_
Optional list of IIDs exposed by this object. If this attribute is missing,
IID_IDispatch
is assumed (ie, if not supplied, the COM object will be created as a normal Automation object.
该列表用于回答QueryInterface
enqueries ,参见win32com.server.policy
module看看它是如何使用的,特别是 BasicPolicy._wrap()
和 BasicPolicy._QueryInterface_
方法。
关于python - _com_interfaces_ 有什么作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38996617/
我正在尝试了解 pywin32 的 COM 服务器示例,并在 win32comext/shell/demos/servers/icon_handler.py 中我看到了这一行 _com_interfa
我是一名优秀的程序员,十分优秀!