飙血推荐
  • HTML教程
  • MySQL教程
  • JavaScript基础教程
  • php入门教程
  • JavaScript正则表达式运用
  • Excel函数教程
  • UEditor使用文档
  • AngularJS教程
  • ThinkPHP5.0教程

重学c#系列——string.empty 和 "" 还有null[二十]

时间:2021-12-24  作者:aoximin  

前言

简单整理一下域名y 和 "" 还有 null的区别。

正文

首先null 和 域名y 还有 "" 是不一样的。

null 关键字是表示不引用任何对象的空引用的文字值。 null 是引用类型变量的默认值。

我们编辑高级语言的时候就可以表示的含义就是不引用任何对象的空引用。

但也不能完全这样说,应该说在语法含义上是这样的,具体的肯定指向某个引用。

域名y 和 "" 实际上是一样的。

// The Empty constant holds the empty string value. It is initialized by the EE during startup.
// It is treated as intrinsic by the JIT as so the static constructor would never run.
// Leaving it uninitialized would confuse debuggers.
//
//We need to call the String constructor so that the compiler doesn\'t mark this as a literal.
//Marking this as a literal would mean that it doesn\'t show up as a field which we can access 
//from native.
public static readonly String Empty;

也可以进行测试:

static void Main(string[] args)
{
	string a = 域名y;
	string b = 域名y;
	string c = "";
	域名eLine(域名renceEquals(a, b));
	域名eLine(域名renceEquals(a,c));
	域名Key();
}

这样可以看出其实是一样的,这其实是一个string 常量池的作用了。

下一节介绍DateTime和DateTimeOffset的区别。

标签:编程
湘ICP备14001474号-3  投诉建议:234161800@qq.com   部分内容来源于网络,如有侵权,请联系删除。