是密封命令 c++ 0x 还是只有微软有

发布于 2024-11-29 14:06:16 字数 52 浏览 3 评论 0原文

sealed 命令是在 c++ 0x 中还是只有 MS 使用它?

Is the sealed command going to be in c++ 0x or is it only MS who use it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

明天过后 2024-12-06 14:06:16

C++0x 有一个特殊标识符 final,其含义与 C++/CLI 中的类的 sealed 相同。它阻止派生类。

在维基百科中阅读有关密封的内容

所以答案基本上是:它已经是但还没有不同的名称和不同的语法。

C++0x has a special identifier final which means the same as sealed for classes in C++/CLI. It prevents a class from being derived from.

Read about sealed in Wikipedia

So the answer is basically: it already is but under a different name and has a different syntax.

叹倦 2024-12-06 14:06:16

sealed 是一个真正的 .net 术语,因此特定于 MS C++/CLI。

sealed is a really .net term and so is specific to MS C++/CLI.

焚却相思 2024-12-06 14:06:16

Sealed 用于声明无法派生的 .net 类。它在 C++ 中可用,但在 MC++ 中适用于 .net 类型。

Sealed is used to declare a .net class that cannot be derived from. It's available in C++ but on for .net types in MC++.

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