当前位置:网站首页>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 .
边栏推荐
- AIDL 与Service
- 拼多多新店如何获取免费流量,需要从哪些环节去优化,才能有效提升店内免费流量
- [PM products] what is cognitive load? How to adjust cognitive load reasonably?
- JVM (XX) -- performance monitoring and tuning (I) -- Overview
- High voltage leakage relay bld-20
- 淘宝商品详情页API接口、淘宝商品列表API接口,淘宝商品销量API接口,淘宝APP详情API接口,淘宝详情API接口
- C#可空类型
- 【oracle】简单的日期时间的格式化与排序问题
- 5. Data access - entityframework integration
- 论文阅读【Semantic Tag Augmented XlanV Model for Video Captioning】
猜你喜欢
Initial experience of annotation
实现网页内容可编辑
利用OPNET进行网络单播(一服务器多客户端)仿真的设计、配置及注意点
阿里云的神龙架构是怎么工作的 | 科普图解
Flink SQL realizes reading and writing redis and dynamically generates hset key
Mapbox Chinese map address
5. 数据访问 - EntityFramework集成
[paper reading] semi supervised left atrium segmentation with mutual consistency training
【js组件】自定义select
SAP ABAP BDC(批量数据通信)-018
随机推荐
SAP webservice 测试出现404 Not found Service cannot be reached
[reading of the paper] a multi branch hybrid transformer network for channel terminal cell segmentation
不同网段之间实现GDB远程调试功能
CentOS 7.9 installing Oracle 21C Adventures
拼多多新店如何获取免费流量,需要从哪些环节去优化,才能有效提升店内免费流量
分布式全局ID生成方案
SAP ABAP BDC(批量数据通信)-018
利用OPNET进行网络仿真时网络层协议(以QoS为例)的使用、配置及注意点
Dj-zbs2 leakage relay
消息队列:如何确保消息不会丢失
sql查询:将下一行减去上一行,并做相应的计算
Unity keeps the camera behind and above the player
[JS component] date display.
Tablayout modification of customized tab title does not take effect
说一说MVCC多版本并发控制器?
论文阅读【Semantic Tag Augmented XlanV Model for Video Captioning】
K6EL-100漏电继电器
Preliminary practice of niuke.com (9)
DOM node object + time node comprehensive case
batch size设置技巧