MinValue属性或Int16结构的字段用于表示Int16的最小可能值。该字段的值是常量,表示用户无法更改该字段的值。该字段的值为-32768。它的十六进制值为0x8000。当将数值类型从Int64和Int32转换为Int16的较大范围的数字类型时,它还可以从OverflowException中保存程序。
用法:
public const short MinValue = -32768;
返回值:该字段始终返回-32768。
例:
// C# program to illustrate the
// Int16.MinValue field
using System;
class GFG {
// Main Method
static public void Main()
{
// display the Minimum value of Int16 struct
Console.WriteLine("Minimum Value is:"+
Int16.MinValue);
// Taking an array of long i.e Int64 data type
long []num = {742346, 43443, -345, -7463647};
// taking variable of Int16 type
short mynum;
foreach(long n in num){
if(n >= Int16.MinValue && n <= Int16.MaxValue)
{
// using the method of Convert class
// to convert Int64 to Int16
mynum = Convert.ToInt16(n);
Console.WriteLine("Conversion is Possible.");
}
else
{
Console.WriteLine("Not Possible");
}
}
}
}
输出:
Minimum Value is:-32768 Not Possible Not Possible Conversion is Possible. Not Possible
参考:
相关用法
- C# Int32.MaxValue用法及代码示例
- C# UInt64.MinValue用法及代码示例
- C# Int32.MinValue用法及代码示例
- C# Int16.MaxValue用法及代码示例
- C# UInt16.MinValue用法及代码示例
- C# UInt32.MaxValue用法及代码示例
- C# UInt16.MaxValue用法及代码示例
- C# UInt64.MaxValue用法及代码示例
- C# UInt32.MinValue用法及代码示例
- C# Int64.MinValue用法及代码示例
- C# Int64.MaxValue用法及代码示例
注:本文由纯净天空筛选整理自ankita_saini大神的英文原创作品 Int16.MinValue Field in C# with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。