托管代码优势

发布于 2024-10-22 03:21:33 字数 285 浏览 3 评论 0原文

可能的重复:
.NET 中的托管和非托管代码

如果我是对的,那么我的应用程序中在 CLR 下运行的代码(所有以标准方式编写的代码)都是托管代码。 但除了GC之外,还有哪些优点呢? 我想知道真实的例子(比如GC),而不是理论上的差异。

Possible Duplicate:
Managed and unmanaged code in .NET

Hi,
If I am right, then code in my app that runs under CLR (all code written the standard way) is managed code.
But except for GC, what other advantages there are?
I would like to know the real examples (like GC), not theoretical differences.

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

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

发布评论

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

评论(2

半山落雨半山空 2024-10-29 03:21:33
  • 内存管理
  • 线程管理
  • 异常处理
  • 垃圾收集
  • 安全性

http://en.wikipedia.org/wiki/Common_Language_Runtime

  • Memory management
  • Thread management
  • Exception handling
  • Garbage collection
  • Security

http://en.wikipedia.org/wiki/Common_Language_Runtime

烟雨扶苏 2024-10-29 03:21:33

例如,

  • 不会弄乱指针,
  • 不会进行内存管理(有一些例外),
  • 庞大基类库
  • 能够组合多种 .NET 语言的

for example

  • no messing with pointers
  • no memory management (with some exceptions)
  • huge base class library
  • able to combine multiple .NET languages
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文