In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-02 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article mainly explains how to use the Null merge operator of C#. Interested friends may wish to have a look at it. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn how to use the Null merge operator of C#.
Null merge operator (?)
The Null merge operator is used to define default values for nullable and reference types. The Null merge operator defines a default value for type conversions in case the value of a nullable type is Null. The Null merge operator implicitly converts an Operand type to an Operand of another nullable (or non-nullable) value type.
If the value of the first Operand is null, the operator returns the value of the second Operand, otherwise it returns the value of the first Operand. The following example demonstrates this:
Using System
Namespace CalculatorApplication
{
Class NullablesAtShow
{
Static void Main (string [] args)
{
Double? Num1 = null
Double? Num2 = 3.14157
Double num3
Num3 = num1 5.34; / / num1 returns 5.34 if it is null
Console.WriteLine ("value of num3: {0}", num3)
Num3 = num2 5.34
Console.WriteLine ("value of num3: {0}", num3)
Console.ReadLine ()
}
}
}
When the above code is compiled and executed, it produces the following results:
The value of num3: the value of 5.34num3: 3.14157 so far, I believe you have a deeper understanding of "how to use the Null merge operator of C#". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.