当前位置:网站首页>On the practical application of C 9's new features
On the practical application of C 9's new features
2020-11-09 19:13:00 【Irving the procedural ape】
You must be curious :“ Old week , Where did you fly the plane ? I haven't blogged for so long .”
Old week :“ I can't afford a plane , Opened an iron mine , A year and a half of digging stones . Who knows that the iron ore has collapsed , Several centipedes were crushed to death , Nothing was dug .”
therefore , Such a loss of the dead , Don't mention it , My grandfather taught me to keep a low profile ……
A blink of an eye ,.NET 5 We're going to have , It also brings C# 9. Imagine that , Lao Zhou just got in touch with him .NET 1.1 When , Just went to college ; Now it's over 13 Years. . Time is a fruit knife , Never forgive .
Lao Zhou seldom wrote such as “XXX New characteristics ” Articles like that , I always think it's useless . however , in the light of C# 9, What does Lao Zhou want to say .
good , Before we start , Lao Zhou stressed it again : These are the new features of the language , You must not study on purpose , Do not , Don't , Don't , Say important things four times ! All you have to do is look at the official instructions , You can master it by brushing it once ( It's much more tiktok than brush. ), You don't have to learn . If you have to learn the cost of these things , I just want to say something good to sing but not to hear —— Your ability to learn is really questionable .
Okay , Let's start the show .
First out :record type
record , I'll use the original words , I know there is a translation for “ Record type ” That's what I'm saying . It's just , It's just , Lao Zhou thinks this is not very good , But Lao Zhou couldn't find a better word , Or use it back record Well .
record yes Reference type , Follow class It's like ( It's almost ). that , It is familiar to the people class Is it not fragrant , Why add one record Well ? answer : For the convenience of data comparison .
Don't understand ? Don't worry , To look down . Recently, an enthusiastic neighbor sent an old Monday pet :
public class Cat { public string Nick { get; set; } public string Name { get; set; } public int Age { get; set; } }
This new pet is not easy , One top one high class food . Fish 、 pork 、 A chicken leg 、 cookies 、 tofu 、 bread 、 Fruits 、 noodles 、 Wheat 、 moth …… Anyway , As long as it's in your mouth , It's all eaten .
Next , We new Two pet examples .
// Two examples describe the same cat Cat pet1 = new Cat { Nick = " Pine nuts ", Name = "Jack", Age = 1 }; Cat pet2 = new Cat { Nick = " Pine nuts ", Name = "Jack", Age = 1 }; // It's not the same cat Console.WriteLine(" The same one ?{0}", pet1 == pet2);
Actually , The two examples describe my darling . But , The output is :
The same one ?False
This is because , In equality comparison , Type references of concern —— Is the reference the same instance . however , In the data processing scheme , We are more concerned with fields in objects / Whether the attributes are equal , Content comparison .
Now? , hold Cat The statement was changed to record type .
public record Cat { public string Nick { get; set; } public string Name { get; set; } public int Age { get; set; } }
And then use the same thing on top pet1 and pet2 Examples are compared for equality , Get the expected result :
The same one ?True
record Type saves you from rewriting equality comparisons ( rewrite Equals、GetHashCode Or overloaded operators ) The logic of .
actually , The code is compiled record Type is also a class , But it automatically implements the logic of member equality comparison . What you used to do manually is now left to the compiler .
If , There is one User type , Used to represent user information ( Include user name 、 password ), And then this User Types in data processing schemes may produce N More than one instance . For example, you can start from EF Select one from the model User example A, Based on the login name and password entered by the user User example B. In order to verify that the login information entered by the user is correct , If User yes class, You may have to judge that :
if(A.UserName == B.UserName && A.Password == B.Password){ ..................}
But if you put User Defined as record type , that , A word of time :
A == B
Second out : Pattern matching (Pattern Matching)
" Pattern matching " This translation feels strange , Lao Zhou hasn't come up with any better words . Pattern matching is not something magical , It's just an extended behavior when detecting variable values . before , Old feeling C++/C# Of switch The statement is not strong enough , Because of the traditional usage , Every case Clause can only compare a single constant value . such as
int Test results = 85; switch ( Test results ) { case 10: Console.WriteLine(" It's just a little bit of a break in the exam "); break; case 50: Console.WriteLine(" It's a little bit close , It's qualified "); break; case 85: Console.WriteLine(" It's a show "); break; case 90: Console.WriteLine(" Miracles happen "); break; }
I fantasized , I wish I could write like this :
switch ( Test results ) { case 0: Console.WriteLine(" miss an exam ?"); break; case > 0 && <= 30: Console.WriteLine(" Too bad "); break; case > 30 && < 60: Console.WriteLine(" Not yet. "); break; case >= 60 && < 80: Console.WriteLine(" We have to work hard "); break; case >= 80 && < 90: Console.WriteLine(" Xiuer , Excellent "); break; case >= 90 && <= 100: Console.WriteLine(" Pretty good , Miracle "); break; }
It's been waiting for years and years (“ Wait a thousand years , etc. ……”) in the future , Finally, it can be realized .
switch ( Test results ) { case 0: Console.WriteLine(" miss an exam ?"); break; case > 0 and <= 30: Console.WriteLine(" Too bad "); break; case > 30 and < 60: Console.WriteLine(" Not yet. "); break; case >= 60 and < 80: Console.WriteLine(" We have to work hard "); break; case >= 80 and < 90: Console.WriteLine(" Xiuer , Excellent "); break; case >= 90 and <= 100: Console.WriteLine(" Pretty good , Miracle "); break; }
Yossi , It's delicious .
occasionally , Not only do you want to detect the value of the object , It has to go deep into its members . Here's an example ,Order Class represents an order information .
public class Order { public int ID { get; set; } public string Company { get; set; } public string ContactName { get; set; } public float Qty { get; set; } public decimal UP { get; set; } public DateTime Date { get; set; } }
Not long ago , The company received a sum of money Order, It should be a good profit .
Order od = new Order { ID = 11, Company = " Big mouth dog Trading Co., Ltd ", ContactName = " Mr. Chen ", Qty = 425.12f, UP = 1000.55M, Date = new(2020, 10, 27) };
If I want to be in a variable od Do on switch, have a look , That's it :
switch.........
版权声明
本文为[Irving the procedural ape]所创,转载请带上原文链接,感谢
边栏推荐
猜你喜欢

SQL Server附加数据库拒绝访问解决方法汇总

RabbitMQ安装

磁阻式随机存储器MRAM基本原理

迅为IMX6ULL开发板C程序调用shell
![[最佳实践]了解 Eolinker 如何助力远程办公](/img/7b/e786e0d73114e6c6800747580aad2d.jpg)
[最佳实践]了解 Eolinker 如何助力远程办公

C console calls ffmpeg to push MP4 video file to stream media open source service platform easydarwin process

A great guide to curl

以太网模块是什么,以太网模块的功能和特点

2020中国电信终端技术与标准论坛上专家解读四大热门产业

Configure the NZ date picker time selection component of ng zerro
随机推荐
Using powerful powerbi Sangji diagram to express complex operation business flow
Another comparison operator related interview question let me understand that the foundation is very important
手势切换背景,让直播带货更加身临其境
Abbyy finereader 15 adds editing page layout function
揭秘在召唤师峡谷中移动路径选择逻辑?
浅谈API网关(API Gateway)如何承载API经济生态链
What if the Mac can't connect to the app store and prompts you to connect to the network?
低功耗蓝牙单芯片为物联网助力
【神级操作】 以中国传统的孔子和老子的思想,来分析忍者代码!
Ultra simple integration of Huawei system integrity testing, complete equipment security protection
CIM平台可视化建设
R8 编译器: 为 Kotlin 库和应用 '瘦身'
Single linked list inversion
Hand in hand to teach you to use container service tke cluster audit troubleshooting
Almost finished all the list titles, I found these things...
Revealing the logic of moving path selection in Summoner Canyon?
手把手教你使用容器服务 TKE 集群审计排查问题
[graffiti Internet of things footprint] graffiti cloud platform interface description
PHP - curl copy paste access SMS verification code example
ABBYY FineReader 15 新增编辑表格单元格功能