.NET 中初始化字符串和不初始化字符串之间的区别
我想知道使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 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.