今天在学习P432的时候 ,看到char类型相减就可以看到int类型,因此借此机会学习一下。
char
类型的默认值为 \0
,即 U+0000。
char
类型支持比较、相等、增量和减量运算符。 此外,对于 char
操作数,算数和逻辑位运算符对相应的字符代码执行操作,并得出 int
类型的结果。
字符串类型将文本表示为 char
值的序列。
char
类型可隐式转换为以下整型类型:ushort
、int
、uint
、long
和 ulong
。 它也可以隐式转换为内置浮点数值类型:float
、double
和 decimal
。 它可以显式转换为 sbyte
、byte
和 short
整型类型。
无法将其他类型隐式转换为 char
类型。 但是,任何整型或浮点数值类型都可显式转换为 char
。
以上是微软的官方解释文档 ,可以看出,char类型相加减后可以隐式转换为int类型;下面以具体的代码实例学习一下:
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Drawing; 6 using System.Windows.Forms; 7 8 namespace DateTimeDemo 9 { 10 class DateTimeDemo 11 { 12 static void Main(string[] args) 13 { 14 DateTime dt = DateTime.Now; 15 Console.WriteLine(dt); 16 string strTime = dt.ToString("T"); 17 Console.WriteLine("dt.ToString is {0}",strTime); 18 19 20 //遍历strTime 21 for (int i = 0; i < strTime.Length; i++) 22 { 23 Console.WriteLine("strTime[{0}] is {1}",i,strTime[i]); 24 Console.WriteLine("strTime[{0}]-'0' is {1}",i,strTime[i]-'0'); 25 Console.WriteLine("strTime[] type is {0}",strTime[i].GetType()); 26 } 27 28 //chara类型的加减运算 29 char a = '8'; 30 char b = '0'; 31 int c = a - b; 32 Console.WriteLine("c is {0}", c); 33 } 34 } 35 }
显示结果是 c is 8