string.Empty vs null.你使用哪个?

string.Empty vs null.Which one do you use?(string.Empty vs null.你使用哪个?)
本文介绍了string.Empty vs null.你使用哪个?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

最近工作的同事告诉我在设置字符串变量时不要使用string.Empty,而是使用null,因为它会污染堆栈?

Recently a colleague at work told me not to use string.Empty when setting a string variable but use null as it pollutes the stack?

他说不要做

string myString=string.Empty; 但是做 string mystring=null;

这真的很重要吗?我知道 string 是一个对象,所以它有点道理.

Does it really matter? I know string is an object so it sort of makes sense.

我知道这是一个愚蠢的问题,但您的观点是什么?

I know is a silly question but what is your view?

推荐答案

nullEmpty 差别很大,不建议随意切换.但两者都没有任何额外的成本",因为 Empty 是一个单一的固定引用(您可以多次使用它).

null and Empty are very different, and I don't suggest arbitrarily switching between them. But neither has any extra "cost", since Empty is a single fixed reference (you can use it any number of times).

堆栈上没有由 ldsfld - 这种担忧是......疯狂.加载 null 可以说是稍微更便宜,但如果您不小心检查值,可能会导致空引用异常.

There is no "pollution" on the stack caused by a ldsfld - that concern is.... crazy. Loading a null is arguably marginally cheaper, but could cause null-reference exceptions if you aren't careful about checking the value.

就我个人而言,我两者都不使用...如果我想要一个空字符串,我使用 "" - 简单明了.实习意味着这没有每次使用的开销.

Personally, I use neither... If I want an empty string I use "" - simple and obvious. Interning means this also has no per-usage overhead.

在 IL 级别,"" 和 Empty 之间的区别只是 ldstr 与 ldsfld - 但两者都给出了相同的单个内部字符串引用.此外,在最近的 .NET 版本中,JIT 直接拦截了这些,产生空字符串引用实际上没有进行静态字段查找.基本上,除了可读性之外,完全没有理由关心任何一种方式.我只用".

At the IL level, the difference here between "" and Empty is just ldstr vs ldsfld - but both give the same single interned string reference. Furthermore, in more recent .NET versions the JIT has direct interception of these, yielding the empty string reference without actually doing a static field lookup. Basically, there is exactly no reason to care either way, except readability. I just use "".

这篇关于string.Empty vs null.你使用哪个?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Multicast delegate weird behavior in C#?(C# 中的多播委托奇怪行为?)
Parameter count mismatch with Invoke?(参数计数与调用不匹配?)
How to store delegates in a List(如何将代表存储在列表中)
How delegates work (in the background)?(代表如何工作(在后台)?)
C# Asynchronous call without EndInvoke?(没有 EndInvoke 的 C# 异步调用?)
Delegate.CreateDelegate() and generics: Error binding to target method(Delegate.CreateDelegate() 和泛型:错误绑定到目标方法)