.NET 中初始化字符串和不初始化字符串之间的区别

发布于 2024-10-26 21:10:22 字数 81 浏览 2 评论 0原文

我想知道使用 new 关键字初始化字符串时以及在不使用 new 关键字的情况下为字符串设置值时如何分配内存。

阿比舍克·R·斯里坎特

I would like to know how is memory allocated when initializing a string using the new keyword and when setting a value to the string without the new keyword.

Abishek R Srikaanth

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

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

发布评论

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

评论(1

走过海棠暮 2024-11-02 21:10:22

使用 new 关键字初始化它的方式与使用 '=' 直接设置字符串的方式没有区别。内存都是在堆上分配的,因此垃圾收集器负责在内存超出范围时收集内存。唯一的区别是“new”调用构造函数,而如果直接使用 = 赋值,则会调用重载运算符并初始化字符串的新实例。

There is no difference between the way you initialize it with new keyword or when you directly set the string using '='. The memory is both allocated on the heap and so garbage collector is reponsible for collecting the memory once it goes out of scope. The only differentce is 'new' calls the constructor whereas if you directly assign using = the overloaded operator gets called and it initializes a new instance of the string.

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