WinRT 和托管之间的映射如何工作?
我听说新的 WinRT 是一个非托管框架,它基于 COM,但不知何故,他们想出了一些办法使 WinRT 和托管代码之间的映射更容易。我想知道这个机制是如何运作的?
I heard that the new WinRT is an unmanaged framework and it is based on COM, but somehow they figured out something to make mapping between WinRT and managed code easier. I would like to know how this mechanism works?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Windows 运行时表示元数据中的所有 API,各种语言投影(C++、JavaScript 和 C#)可以读取这些 API。
由于 API 形状是在元数据中描述的,因此语言运行时和编译器可以推断 API 并知道如何为这些 API 生成代码。
对于 CLR 来说,这项工作稍微容易一些,因为元数据格式是 ECMA 335,这是 CLR 使用的 CLI 元数据格式 - 因此对于 CLR 来说,转换稍微容易一些。
但一般来说,只要您拥有机器上存在的所有 API 的机器可读表示,翻译就很简单。
The Windows Runtime represents all APIs in metadata, which the various language projections (C++, JavaScript and C#) read.
Because the API shape is described in metadata, the language runtimes and compilers can reason about the APIs and know how to generate code for those APIs.
For the CLR, the job is a tiny bit easier, since the metadata format is ECMA 335, which is the CLI metadata format used by the CLR - thus the translation is slightly easier for the CLR.
But in general, the translation is straightforward given that you have a machine readable representation of all the APIs present on the machine.