当前位置:网站首页>C nullable type
C nullable type
2022-07-07 05:40:00 【Bommy games】
List of articles
One 、 Why do you need nullable types
- We all know that numerical fields in the database are nullable , For example, a certain Int Field , It can have value or no value , We need to read this field and save it in a Int In the type variable , We must consider the situation that it has no value . This is the time , You need to implement it with the help of nullable types .
- Here is an example : Java Of java.util.Date Class is a reference type , Therefore, this type of variable can be set to null, however CLR Of System.DateTime Fixed value type ,DateTime Variables can never be set to null . If you use Java Write applications that want to run CLR Of Web Service exchange date / Time , So once Jaya Program send null There's something wrong with the reception , because CLR I don't know how to express nul , I don't know how to operate it .
- Often, sometimes when we develop , I hope not initializing a value is different from initializing , The previous practice is to agree on a very special value , Then judge whether it is equal to decide whether to assign a value .
Two 、System.Nullable< T > Source code
First show the source code :
Source code address :https://referencesource.microsoft.com/#mscorlib/system/nullable.cs,ffebe438fd9cbf0e
public struct Nullable<T> where T : struct
{
private bool hasValue;
internal T value;
[System.Runtime.Versioning.NonVersionable]
public Nullable(T value) {
this.value = value;
this.hasValue = true;
}
public bool HasValue {
[System.Runtime.Versioning.NonVersionable]
get {
return hasValue;
}
}
public T Value {
get {
if (!hasValue) {
ThrowHelper.ThrowInvalidOperationException(ExceptionResource.InvalidOperation_NoValue);
}
return value;
}
}
[System.Runtime.Versioning.NonVersionable]
public T GetValueOrDefault() {
return value;
}
[System.Runtime.Versioning.NonVersionable]
public T GetValueOrDefault(T defaultValue) {
return hasValue ? value : defaultValue;
}
public override bool Equals(object other) {
if (!hasValue) return other == null;
if (other == null) return false;
return value.Equals(other);
}
public override int GetHashCode() {
return hasValue ? value.GetHashCode() : 0;
}
public override string ToString() {
return hasValue ? value.ToString() : "";
}
[System.Runtime.Versioning.NonVersionable]
public static implicit operator Nullable<T>(T value) {
return new Nullable<T>(value);
}
[System.Runtime.Versioning.NonVersionable]
public static explicit operator T(Nullable<T> value) {
return value.Value;
}
}
According to the code above , You can see Nullable The template is also a structure , Value type , Lightweight, too . It's just an addition bool hasValue, This value is set to true. Then if you get value Words , If there is no structure , Will throw an exception .
therefore , Construct an nullable int, Can write :
using System;
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
Nullable<int> x = 5;
Nullable<int> y = null;
Console.WriteLine($"x hasvalue : {x.HasValue} Value: {x.Value}");
Console.WriteLine($"y hasvalue : {y.HasValue} Value: {y.GetValueOrDefault()}");
}
}
}
give the result as follows :
3、 ... and 、c# Support for nullable types
Although declare a Nullable Templates can be nullable , But officials still find it troublesome to write , therefore c# 2.0 Later, support for nullable types was added at the language level .
C# Allow to use ? Notation to declare :
int? x1 = 5;
int? y1 = null;
stay c# in int? Is equal to Nullable< T >
Allow operators to be applied to nullable instances :
using System;
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
int? x = 5;
int? y = null;
// One yuan
x++;
y = -y;
// binary
x += 3;
y += 3;
// Equality
if (x == y)
{
}
// Compare
if (x < y)
{
}
}
}
}
In all operations , As long as a value is null So the result is null
3、 ... and 、c# Empty join operator of
c# The geotechnical engineer made a “ null-coalescing operator ( null - coalescing operator ), namely ?? The operator , It takes two operands . If the operand on the left is not nul , Just return the value of this operand . If the operands on the left are null , Just return the value of the operand on the right . Use the empty join operator , You can easily set the default value of variables .
One advantage of the empty operator is , It can be used for reference types , It can also be used for nullable types . The following code demonstrates how to use ?? The operator :
using System;
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
int? x = null;
int? y = x.HasValue ? x : 123;
int? z = x ?? 123;
}
}
}
In the above code ,z The initialization , Equivalent to y The initialization , But it's simpler .
Four 、 Empty type packing and unpacking :
using System;
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
int? x = null;
object o = x;
Console.WriteLine($"o is null ? {o == null}");
x = 5;
o = x;
Console.WriteLine($"o is null ? {o == null}");
}
}
}

From the above results, we can see that when packing, we need to see whether the nullable type is null, If it is empty, packing operation will not occur ,object Still let be null.
using System;
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
object o = 5;
int? x = (int?)o; // 5
int y = (int)o; // 5
Console.WriteLine($"x: {x.Value} y {y}");
o = null;
int? x1 = (int?)o; // null
int y1 = (int)o; //System.NullReferenceException:“Object reference not set to an instance of an object.”
Console.WriteLine($"x1: {x1.Value} y1 {y1}");
}
}
}
You can see from the code above , Unpacking for non null Objects can be converted to int perhaps int?, But for null object , If it turns into int An exception will be thrown .
5、 ... and 、 Nullable type GetType()
stay Nullable< T > Object GetType() Method ,CLR Actually, I will lie and say that the type is T, instead of Nullable< T >.
So run the following code :
int? x = 5;
Console.WriteLine($"x.GetType() : {x.GetType()}");
result :
summary
Null type , On the one hand, it is compatible with some business pairs null Value type requirements , On the one hand, it improves the brevity of the code . Therefore, it can be used properly when writing code .
边栏推荐
猜你喜欢

集群、分布式、微服務的區別和介紹

利用OPNET进行网络指定源组播(SSM)仿真的设计、配置及注意点

Lombok插件

How digitalization affects workflow automation

Leakage relay jd1-100
![[reading of the paper] a multi branch hybrid transformer network for channel terminal cell segmentation](/img/f6/cd307c03ea723e1fb6a0011b37d3ef.png)
[reading of the paper] a multi branch hybrid transformer network for channel terminal cell segmentation

【js组件】date日期显示。

C#可空类型

A cool "ghost" console tool
![[PM products] what is cognitive load? How to adjust cognitive load reasonably?](/img/75/2277e0c413be561ec963b44679eb75.jpg)
[PM products] what is cognitive load? How to adjust cognitive load reasonably?
随机推荐
Intelligent annotation scheme of entity recognition based on hugging Face Pre training model: generate doccano request JSON format
DOM node object + time node comprehensive case
How can professional people find background music materials when doing we media video clips?
English grammar_ Noun possessive
Design, configuration and points for attention of network arbitrary source multicast (ASM) simulation using OPNET
Lombok插件
5. Data access - entityframework integration
Taobao Commodity details page API interface, Taobao Commodity List API interface, Taobao Commodity sales API interface, Taobao app details API interface, Taobao details API interface
【js组件】自定义select
[JS component] date display.
利用OPNET进行网络单播(一服务器多客户端)仿真的设计、配置及注意点
Design, configuration and points for attention of network unicast (one server, multiple clients) simulation using OPNET
MySQL数据库学习(7) -- pymysql简单介绍
分布式事务解决方案之TCC
CentOS 7.9 installing Oracle 21C Adventures
Photo selector collectionview
删除文件时提示‘源文件名长度大于系统支持的长度’无法删除解决办法
Leakage relay llj-100fs
AI人脸编辑让Lena微笑
Is the human body sensor easy to use? How to use it? Which do you buy between aqara green rice and Xiaomi