WinRT 和托管之间的映射如何工作?

发布于 2024-12-05 17:12:48 字数 88 浏览 1 评论 0原文

我听说新的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

潇烟暮雨 2024-12-12 17:12:48

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文