Int16: Int16结构用于表示 16 位有符号整数。Int16 可以存储 -32768
到 +32767
范围内的负数和正数两种类型的值。
例子:
// C# program to show the
// difference between Int16
// and UInt16
using System;
using System.Text;
public
class GeekdocsDemo {
// Main Method
static void Main(string[] args) {
// printing minimum & maximum values
Console.WriteLine("Minimum value of Int16: "+ Int16.MinValue);
Console.WriteLine("Maximum value of Int16: "+ Int16.MaxValue);
Console.WriteLine();
// Int16 array
Int16[] arr1 = {-3, 0, 1, 3, 7};
foreach (Int16 i in arr1)
{
Console.WriteLine(i);
}
}
}
运行结果:
Minimum value of Int16: -32768
Maximum value of Int16: 32767
-3
0
1
3
7
UInt16: UInt16结构用于表示 16 位无符号整数。UInt16 只能存储 0 到 65535 范围内的正值。
例子 :
// C# program to show the
// difference between Int16
// and UInt16
using System;
using System.Text;
public class GeekdocsDemo{
// Main Method
static void Main(string[] args)
{
// printing minimum & maximum values
Console.WriteLine("Minimum value of UInt16: "+ UInt16.MinValue);
Console.WriteLine("Maximum value of UInt16: "+ UInt16.MaxValue);
Console.WriteLine();
// Int16 array
UInt16[] arr1 = { 13, 0, 1, 3, 7};
foreach (UInt16 i in arr1)
{
Console.WriteLine(i);
}
}
}
运行结果:
Minimum value of UInt16: 0
Maximum value of UInt16: 65535
13
0
1
3
7
C#中Int16和UInt16的区别
序号 | INT16 | UINT16 |
---|---|---|
1 | int16 用于表示 16 位有符号整数。 | UInt16用于表示 16 位无符号整数 |
2 | Int16 代表有符号整数。 | UInt16代表无符号整数。 |
3 | INT16可以存储负整数和正整数。 | INT16只能存储正整数。 |
4 | INT16在内存中占用 2 字节空间。 | INT16还占用内存中的 2 字节空间。 |
5 | Int16 的范围是 -32768 到 +32767。 | UInt16 的范围从 0 到 65535。 |
6 | 声明 Int16 的语法: Int16 variable_name; | 声明 UInt16 的语法: UInt16 variable_name; |