操作符概述

优先级依次降低 类别 运算符号
基本 x.y f(x) x++ x— new typeof default checked unchecked delegate sizeof ->
一元 + - ! ~ ++x —x (T)x await &x *x
乘法 + / %
加减 + -
移位 << >>
关系和类型检测 < > <= >= is as
相等 == !=
逻辑”与” &
逻辑X OR ^
逻辑OR |
条件AND &&
条件OR ||
null合并 ??
条件 ?:
赋值和llambda表达式 = *= %= += <<= >>= &= ^= |= =>

操作符(Operator)也译为“运算符”
操作符是用来操作数据的,被操作符操作的数据称为操作数(Operand)

操作符本质

  • 操作符的本质是函数(即算法)的“简记法”
    • 假如没有发明“+”,只有 Add 函数,算式 3+4+5 将可以写成 Add(Add(3,4),5)
    • 假如没有发明“”,只有 Mul 函数,那么算式 `3+45只能写成Add(3,Mul(4,5))`
    • 注意操作符优先级
  • 操作符不能脱离与它关联的数据类型

    • 可以说操作符就是与固定数据类型相关联的一套基本算法的简记法
    • 示例:为自定义数据类型创建操作符

      1. namespace CreateOperator
      2. {
      3. class Program
      4. {
      5. static void Main(string[] args)
      6. {
      7. Person person1 = new Person();
      8. Person person2 = new Person();
      9. person1.Name = "Deer";
      10. person2.Name = "Deer's wife";
      11. //var nation = Person.GetMarry(person1, person2);
      12. var nation = person1 + person2;
      13. foreach (var p in nation)
      14. {
      15. Console.WriteLine(p.Name);
      16. }
      17. }
      18. }
      19. class Person
      20. {
      21. public string Name;
      22. //public static List<Person> GetMarry(Person p1, Person p2)
      23. public static List<Person> operator + (Person p1, Person p2)
      24. {
      25. List<Person> people = new List<Person>();
      26. people.Add(p1);
      27. people.Add(p2);
      28. for (int i = 0; i < 11; i++)
      29. {
      30. var child = new Person();
      31. child.Name = p1.Name + " & " + p2.Name + "s child";
      32. people.Add(child);
      33. }
      34. return people;
      35. }
      36. }
      37. }

      优先级与运算顺序

  • 操作符的优先级

    • 可以使用圆括号提高被括起来表达式的优先级
    • 圆括号可以嵌套
    • 不像数学里有方括号与花括号,在 C# 语言里面“[]”与“{}”有专门的用途
  • 同优先级操作符的运算顺序
    • 除了带有赋值功能的操作符,同优先级操作符都由左向右进行运算
    • 带有赋值功能的操作符的运算顺序是由右向左
    • 与数学运算不同,计算机语言的同优先级运算没有“结合律”
      • 3+4+5 只能理解为 Add(Add(3,4),5) 不能理解为 Add(3,Add(4,5))

        操作符示例

        基本操作符

. 成员访问操作符

  1. System.IO.File.Create("D:\\HelloWorld.txt");
  2. 1 2 3
  3. var myForm = new Form();
  4. myForm.Text = "Hello, World";
  5. 4
  6. myForm.ShowDialog();
  7. 4
  1. 1. 访问外层名称空间中的子名称空间
  2. 1. 访问名称空间中的类型
  3. 1. 访问类型的静态成员
  4. 1. 访问对象中的实例成员

f(x) 方法调用操作符

C# 里方法调用,除委托之外,都要用到**()**
Action 是委托,委托在创建时只需要知道方法的名称,不调用方法,所以只会用到方法名(不加())。当然最终myAction();也用到了方法调用操作符()

  1. namespace OperatorsExample
  2. {
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. var c = new Calculator();
  8. double x = c.Add(3.0, 4.6);
  9. Console.WriteLine(x);
  10. Action myAction = new Action(c.PrintHello);
  11. //此时c.PrintHello 后面未加(),没有报错的原因是使用了委托。
  12. myAction();
  13. }
  14. }
  15. class Calculator
  16. {
  17. public double Add(double a,double b)
  18. {
  19. return a + b;
  20. }
  21. public void PrintHello()
  22. {
  23. Console.WriteLine("Hello");
  24. }
  25. }
  26. }

a[x] 元素访问操作符

创建数组:在类型后面加[]
访问数组元素:

  1. int[] myIntArray = new int[] { 1, 2, 3, 4, 5 }; //声明数组对象
  2. //{}称为“初始化器”,不是构造器
  3. //若在new int[]的[]中添加数值,后面的{}内就需要添加多少数值且不呢缺失
  4. Console.WriteLine(myIntArray[0]);
  5. Console.WriteLine(myIntArray[myIntArray.Length - 1]);

索引字典中的元素:

  1. class Program
  2. {
  3. static void Main(string[] args)
  4. {
  5. Dictionary<string, Student> stuDic = new Dictionary<string, Student>();
  6. for (int i = 0; i < 100; i++)
  7. {
  8. var stu = new Student()
  9. {
  10. Name = "s_" + i.ToString(),
  11. Score = 100 - i
  12. };
  13. stuDic.Add(stu.Name, stu);
  14. }
  15. Console.WriteLine(stuDic["s_6"].Score);
  16. }
  17. }
  18. class Student
  19. {
  20. public string Name;
  21. public int Score;
  22. }

x++ x-- 后置自增、自减操作符

  1. int x = 100;
  2. int y = x++;
  3. Console.WriteLine(x);
  4. Console.WriteLine(y);

先赋值,再自增。
101112操作符详解 - 图1

typeof 操作符

检测类型元数据(Metadata)。

  1. using System;
  2. using System.Collections.Generic;
  3. namespace OperatorExample
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Type t = typeof(int);
  10. Console.WriteLine(t.Namespace);
  11. Console.WriteLine("------------------");
  12. Console.WriteLine(t.FullName);
  13. Console.WriteLine("------------------");
  14. Console.WriteLine(t.Name);
  15. Console.WriteLine("------------------");
  16. int c = t.GetMethods().Length;
  17. Console.WriteLine(c);
  18. Console.WriteLine("------------------");
  19. foreach (var m in t.GetMethods())
  20. {
  21. Console.WriteLine(m.Name);
  22. }
  23. }
  24. }
  25. }

image.png

default 操作符

  1. namespace OperatorsExample
  2. {
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. // 值类型内存块都刷成 0,值就是 0。
  8. int x = default(int);
  9. Console.WriteLine(x);
  10. // 引用类型内存块刷成 0,没有引用,default 是 null。
  11. Form myForm = default(Form);
  12. Console.WriteLine(myForm == null);
  13. // 枚举类型映射到整型上,默认枚举值是对应值为 0 的那个,
  14. //可能是你手动指定的,也可能是系统默认赋值的。
  15. // 这就牵扯到我们使用枚举时,要注意枚举中是否有对应 0 的;
  16. //创建枚举类型时,最好有一个对应 0 的,以免他人查找我们枚举的 default 值时报错。
  17. Level level = default(Level);
  18. Console.WriteLine(level);
  19. }
  20. }
  21. enum Level
  22. {
  23. Low = 1,
  24. Mid = 2,
  25. High = 0
  26. }
  27. }

new 操作符

new 操作符基本功能。

  1. static void Main(string[] args)
  2. {
  3. // 在内存中创建类型实例,调用实例构造器
  4. // 把实例地址通过赋值操作符交给访问它的变量
  5. var myForm = new Form(); //var 用于声明隐式变量
  6. // new 操作符可以调用实例的初始化器
  7. var myForm2 = new Form()
  8. {
  9. Text = "Hello",
  10. FormBorderStyle=FormBorderStyle.SizableToolWindow
  11. };
  12. // new 一次性变量:利用实例的初始化器直接 new 对象后,马上执行方法,然后就不管它了,随着 GC 去处理它
  13. new Form() { Text = "Hello" }.ShowDialog();
  14. }

通过 C# 的语法糖衣,我们在声明常用类型的变量时不需要 new 操作符。

  1. // 通过 C# 的语法糖衣,我们在声明常用类型的变量时不需要 new 操作符
  2. string name = "Tim";
  3. string name2 = new string(new char[]{ 'T', 'i', 'm' });
  4. int[] myArray1 = { 1, 2, 3, 4 };
  5. int[] myArray2 = new int[4];

为匿名类型创建对象。

  1. // new 为匿名类型创建对象,并且用隐式类型变量(var)来引用这个实例
  2. var person = new { Name = "Mr.Okay", Age = true,Dob=true };
  3. Console.WriteLine(person.Name);
  4. Console.WriteLine(person.Age);
  5. Console.WriteLine(person.GetType().Name);

101112操作符详解 - 图3

new 操作符会导致依赖紧耦合,可以通过依赖注入模式来将 紧耦合 变成 相对松的耦合 。

  1. // new 操作符功能强大,但会造成依赖。new 出 myForm 后,Program class 就依赖到 myForm 上了,
  2. // 一旦 myForm 运行出错,Program 类也会出问题。
  3. // 通过设计模式中的依赖注入模式来将紧耦合变成相对松的耦合
  4. var myForm = new Form() { Text = "Hello" };

new 作为关键字:

  1. class Program
  2. {
  3. static void Main(string[] args)
  4. {
  5. var stu = new Student();
  6. stu.Report();
  7. var csStu = new CsStudent(); //new是操作符
  8. csStu.Report();
  9. }
  10. }
  11. class Student
  12. {
  13. public void Report()
  14. {
  15. Console.WriteLine("I'm a student.");
  16. }
  17. }
  18. class CsStudent:Student //派生或称为继承 student
  19. //自动继承父类的内容
  20. {
  21. // new 修饰符
  22. new public void Report()
  23. {
  24. Console.WriteLine("I'm CS student.");
  25. }
  26. }

checked & unchecked 操作符

检查一个值在内存中是否有溢出。

未 check 时,x+1直接就溢出变成 0 了。

  1. uint x = uint.MaxValue; //uint:无符号整型
  2. Console.WriteLine(x);
  3. var binStr = Convert.ToString(x, 2);
  4. Console.WriteLine(binStr);
  5. uint y = x + 1;
  6. Console.WriteLine(y);

101112操作符详解 - 图4

checked:

  1. uint x = uint.MaxValue;
  2. Console.WriteLine(x);
  3. var binStr = Convert.ToString(x, 2);
  4. Console.WriteLine(binStr);
  5. try
  6. {
  7. uint y = checked(x + 1);
  8. Console.WriteLine(y);
  9. }
  10. catch (OverflowException ex)
  11. {
  12. Console.WriteLine("There's overflow!");
  13. }

101112操作符详解 - 图5

unchecked:

  1. try
  2. {
  3. // C# 默认采用的就是 unchecked 模式
  4. uint y = unchecked(x + 1);
  5. Console.WriteLine(y);
  6. }
  7. catch (OverflowException ex)
  8. {
  9. Console.WriteLine("There's overflow!");
  10. }

checked 与 unchecked 的另一种用法。

  1. uint x = uint.MaxValue;
  2. Console.WriteLine(x);
  3. var binStr = Convert.ToString(x, 2);
  4. Console.WriteLine(binStr);
  5. //unchecked
  6. checked
  7. {
  8. try
  9. {
  10. uint y = x + 1;
  11. Console.WriteLine(y);
  12. }
  13. catch (OverflowException ex)
  14. {
  15. Console.WriteLine("There's overflow!");
  16. }
  17. }

delegate 操作符

现在常见的是把 delegate 当做委托关键字使用。
delegate 也可以作为操作符使用,但由于 Lambda 表达式的流行,delegate 作为操作符的场景愈发少见(被 Lambda 替代,已经过时)。

  1. public partial class MainWindow : Window
  2. {
  3. public MainWindow()
  4. {
  5. InitializeComponent();
  6. // 方法封装提高了复用性,但如果我这个方法在别的地方不太可能用到,我就可以使用匿名方法
  7. // 下面就是使用 delegate 来声明匿名方法
  8. //this.myButton.Click += delegate (object sender, RoutedEventArgs e)
  9. //{
  10. // this.myTextBox.Text = "Hello, World!";
  11. //};
  12. // 现在推荐使用的是 Lambda 表达式
  13. this.myButton.Click += (sender, e) =>
  14. {
  15. this.myTextBox.Text = "Hello, World!";
  16. };
  17. }
  18. // 非匿名方法
  19. //private void MyButton_Click(object sender, RoutedEventArgs e)
  20. //{
  21. // throw new NotImplementedException();
  22. //}
  23. }

sizeof 操作符

sizeof 用于获取对象在内存中所占字节数。
注意:

  1. 1. 默认情况下 sizeof 只能获取结构体类型的实例在内存中的字节数
  2. - intuintdouble 可以
  3. - stringobject 不行
  4. 2. 非默认情况下,可以使用 sizeof 获取自定义结构体类型的大小,但需要把它放在不安全的上下文中

需要在“项目属性”里面开启“允许不安全代码”。
101112操作符详解 - 图6

  1. class Program
  2. {
  3. static void Main(string[] args)
  4. {
  5. var x = sizeof(int);
  6. Console.WriteLine(x);
  7. unsafe
  8. {
  9. int y = sizeof(Student);
  10. Console.WriteLine(y);
  11. }
  12. }
  13. }
  14. struct Student
  15. {
  16. int ID;
  17. long Score;
  18. }

101112操作符详解 - 图7

:int 字节数为 4,long 字节数为 8。但 sizeof(Student) 结果是 16。这涉及到了 .NET 对内存的管理,超出了现在所学内容。

-> 操作符

-> 操作符也必须放在不安全的上下文中才能使用。
C# 中指针操作、取地址操作、用指针访问成员的操作,只能用来操作结构体类型,不能用来操作引用类型。

  1. class Program
  2. {
  3. static void Main(string[] args)
  4. {
  5. unsafe
  6. {
  7. Student stu;
  8. stu.ID = 1;
  9. // 用 . 直接访问
  10. stu.Score = 99;
  11. Student* pStu = &stu;
  12. // 用 -> 间接访问
  13. pStu->Score = 100;
  14. Console.WriteLine(stu.Score);
  15. }
  16. }
  17. }
  18. struct Student
  19. {
  20. public int ID;
  21. public long Score;
  22. }

一元操作符/单目操作符

&x *x 操作符(取地址操作符、引用操作符)

也需要在不安全的上下文中。
现实工作中用得很少,当做知识了解一下即可。

  1. class Program
  2. {
  3. static void Main(string[] args)
  4. {
  5. unsafe
  6. {
  7. Student stu;
  8. stu.ID = 1;
  9. stu.Score = 99;
  10. // & 取地址
  11. Student* pStu = &stu;
  12. pStu->Score = 100;
  13. // * 取引用
  14. (*pStu).Score = 1000;
  15. Console.WriteLine(stu.Score);
  16. }
  17. }
  18. }
  19. struct Student
  20. {
  21. public int ID;
  22. public long Score;
  23. }

+ - 正负操作符

正负操作符使用不当,可能导致溢出。

  1. var x = int.MinValue;
  2. int y = checked(-x);
  3. Console.WriteLine("x = " + x);
  4. Console.WriteLine("y = " + y);

C# 求相反数是按位取反再加一:

  1. var x = int.MinValue;
  2. int y = -x;
  3. Console.WriteLine(y);
  4. string xStr = Convert.ToString(x, 2).PadLeft(32, '0');
  5. Console.WriteLine(xStr);
  6. // C# 求相反数是按位取反再加一
  7. string yStr = Convert.ToString(y, 2).PadLeft(32, '0');
  8. Console.WriteLine(yStr);

~ 求反操作符

  1. int x = 12345678;
  2. Console.WriteLine(x);
  3. int y = ~x;
  4. Console.WriteLine(y);
  5. int z = y + 1;
  6. Console.WriteLine(z);
  7. var xStr = Convert.ToString(x, 2).PadLeft(32, '0');
  8. var yStr = Convert.ToString(y, 2).PadLeft(32, '0');
  9. Console.WriteLine(xStr);
  10. Console.WriteLine(yStr);

101112操作符详解 - 图8

! 非操作符

! 操作符在现实工作中的一个应用:

  1. class Program
  2. {
  3. static void Main(string[] args)
  4. {
  5. var stu = new Student(null);
  6. Console.WriteLine(stu.Name);
  7. }
  8. }
  9. class Student
  10. {
  11. public Student(string initName)
  12. {
  13. if (!string.IsNullOrEmpty(initName))
  14. {
  15. this.Name = initName;
  16. }
  17. else
  18. {
  19. throw new ArgumentException("initName cannot be null or empty.");
  20. }
  21. }
  22. public string Name;
  23. }

++x --x 前置自增自减操作符

无论前置、后置,在实际工作中,尽量单独使用它们,不要把它们和别的语句混在一起,那样会降低可读性。

  1. static void Main(string[] args)
  2. {
  3. var x = 100;
  4. // 单独使用时,前置与后置没有区别
  5. //++x;
  6. // 先自增再赋值
  7. var y = ++x;
  8. Console.WriteLine(x);
  9. Console.WriteLine(y);
  10. }

(T)x 强制类型转换操作符

详见类型转换

乘除、取余与加减法

务必留意“数值提升”。
参见《C# 定义文档》7.8 算术运算符。

  1. // 自动类型提升为 double
  2. var x = 3.0 * 4;
  3. double x = (double)5 / 4;

int类等整型数值“/”0时,会产生报错;
double等浮点型数值“/”0时,不会产生报错,被除数为正数时,结果为+∞,为负数时,结果为-∞。
浮点除法时,+∞/-∞除以+∞/-∞,结果为NaN。

% 取余

  1. double x = 3.5;
  2. double y = 3;
  3. Console.WriteLine(x % y);

101112操作符详解 - 图9

加法操作符

三大用途

  1. - 计算加法
  2. - 事件绑定
  3. - 字符串拼接
  1. //字符串拼接
  2. using System;
  3. namespace ConversionExample
  4. {
  5. class Programe
  6. {
  7. static void Main(string[] args)
  8. {
  9. string s1 = "123";
  10. string s2 = "ABC";
  11. string s3 = s1 + s2;
  12. Console.WriteLine(s3);
  13. }
  14. }
  15. }

<< >>位移操作符

数据在内存中的二进制的结构,向左或向右进行一定位数的平移。

当没有溢出时,左移就是乘 2 ,右移就是除 2 。

  1. int x = -7;
  2. // 右移时最高位:正数补 0 ,负数补 1 。
  3. int y = x >> 1;
  4. var strX = Convert.ToString(x, 2).PadLeft(32, '0');
  5. var strY = Convert.ToString(y, 2).PadLeft(32, '0');
  6. Console.WriteLine(strX);
  7. Console.WriteLine(strY);
  8. Console.WriteLine(y);

101112操作符详解 - 图10

< > <= >=关系操作符

char 类型比较 Unicode 码。

  1. char char1 = 'a';
  2. char char2 = 'A';
  3. Console.WriteLine(char1 > char2);
  4. var u1 = (ushort)char1;
  5. var u2 = (ushort)char2;
  6. Console.WriteLine(u1);
  7. Console.WriteLine(u2);

字符串比较:只能比较是否相等,无法比较大小

  1. string str1 = "abc";
  2. string str2 = "Abc";
  3. Console.WriteLine(str1.ToLower() == str2.ToLower());
  4. string.Compare(str1, str2);

类型检测操作符

101112操作符详解 - 图11

is 操作符

检验对象是否是某一个类型的·对象,返回值为布尔类型

  1. Teacher t = new Teacher();
  2. // 检测 t 所引用的实例是否为 Teacher
  3. var result = t is Teacher;
  4. Console.WriteLine(result.GetType().FullName);
  5. Console.WriteLine(result);
  6. Console.WriteLine(t is Animal);
  7. Car car = new Car();
  8. Console.WriteLine(car is Animal);
  9. Console.WriteLine(car is object);
  10. Human h = new Human();
  11. Console.WriteLine(h is Teacher);

101112操作符详解 - 图12

as 操作符

as关键字会直接进行类型转换
如果转换成功,会返回转换后的对象
如果转换不成功,则不会抛出异常而是返回null

  1. object o = new Teacher();
  2. //if(o is Teacher)
  3. //{
  4. // var t = (Teacher)o;
  5. // t.Teach();
  6. //}
  7. Teacher t = o as Teacher;
  8. if (t != null)
  9. {
  10. t.Teach();
  11. }

逻辑与 &| 异或 ^

一般在操作二进制数据,图像数据时用。

条件与 && 条件或 ||

条件与和条件或有短路效应

  1. static void Main(string[] args)
  2. {
  3. int x = 3;
  4. int y = 4;
  5. int a = 5;
  6. if (x>y && a++>3)
  7. {
  8. Console.WriteLine("hello");
  9. }
  10. Console.WriteLine(a);
  11. }
  12. //a输出为3
  13. static void Main(string[] args)
  14. {
  15. int x = 5;
  16. int y = 4;
  17. int a = 5;
  18. if (x>y && a++>3)
  19. {
  20. Console.WriteLine("hello");
  21. }
  22. Console.WriteLine(a);
  23. }
  24. //a输出为6

当判断&&时,左侧不满足条件后,不会执行右侧代码

?? null 合并操作符

  1. //Nullable<int> x = null; //泛型,一个可空的int类型
  2. int? x = null; //上下等同
  3. Console.WriteLine(x.HasValue); //x。HasValue,判断x是否有值
  4. // x 如果为 null,就拿 1 来代替。
  5. int y = x ?? 1; //??将某一个值代替x中的Null数值
  6. Console.WriteLine(y);

? : 条件操作符

唯一一个三元操作符,本质上就是 if else 的简写。

  1. static void Main(string[] args)
  2. {
  3. int x = 80;
  4. string str =string .Empty;
  5. if (x >=60)
  6. {
  7. str = "Pass";
  8. }
  9. else
  10. {
  11. str = "Faile";
  12. }
  13. Console.WriteLine(str);
  14. }
  15. //上下等同
  16. int x = 80;
  17. // 使用 () 将条件括起来,提高可读性。
  18. string str =string .Empty;
  19. string str = (x >= 60) ? "Pass" : "Failed";
  20. Console.WriteLine(str);

赋值和 Lambda 表达式

赋值略,Lambda 在前面 delegate 操作符那里也讲过了。

类型转换

装箱与拆箱之前讲过,这里不在细讲,只列出来。

隐式(implicit)类型转换

不丢失精度的转换

  1. static void Main(string[] args)
  2. {
  3. int x = int.MaxValue;
  4. long y = x;
  5. Console.WriteLine(y);
  6. }
  7. //小的范围向大的范围转换不会丢失精度

《C# 定义文档》6.1.2 隐式数值转换 隐式数值转换为:
● 从 sbyte 到 short、int、long、float、double 或 decimal。
● 从 byte 到 short、ushort、int、uint、long、ulong、float、double 或 decimal。
● 从 short 到 int、long、float、double 或 decimal。
● 从 ushort 到 int、uint、long、ulong、float、double 或 decimal。
● 从 int 到 long、float、double 或 decimal。
● 从 uint 到 long、ulong、float、double 或 decimal。
● 从 long 到 float、double 或 decimal。
● 从 ulong 到 float、double 或 decimal。
● 从 char 到 ushort、int、uint、long、ulong、float、double 或 decimal。
● 从 float 到 double。

从 int、uint、long 或 ulong 到 float 的转换以及从 long 或 ulong 到 double 的转换可能导致精度损失,但决不会影响数值大小。其他的隐式数值转换决不会丢失任何信息。 不存在向 char 类型的隐式转换,因此其他整型的值不会自动转换为 char 类型。

子类向父类的转换

所有真正面向对象的语言都支持子类向父类转换。后面会讲到面向对象编程的一个核心概念 —— “多态”(polymorphism),多态就基于面向对象语言支持子类向父类的隐式转换。

  1. using System;
  2. namespace ConversionExample
  3. {
  4. class Programe
  5. {
  6. static void Main(string[] args)
  7. {
  8. Teacher t = new Teacher();
  9. Human h = t;
  10. Animal a = h;
  11. a.Eat();
  12. }
  13. }
  14. class Animal
  15. {
  16. public void Eat()
  17. {
  18. Console.WriteLine("Eating...");
  19. }
  20. }
  21. class Human : Animal
  22. {
  23. public void Think()
  24. {
  25. Console.WriteLine("Who i am?");
  26. }
  27. }
  28. class Teacher : Human
  29. {
  30. public void Teach()
  31. {
  32. Console.WriteLine("I teach programmming");
  33. }
  34. }
  35. }


当 t 转换为 h 后,在 h 里面就只能访问到 Human 类能访问的成员,不能再访问 Teach 方法。

显式(explicit)类型转换

有可能丢失精度(甚至发生错误)的转换,即 cast

示例:ushort 转 uint

  1. // max ushort = 65535
  2. Console.WriteLine(ushort.MaxValue);
  3. uint x = 65536;
  4. ushort y = (ushort)x;
  5. Console.WriteLine(y);
  6. // y = 0

《C# 定义文档》6.2.1 显式数值转换 显式数值转换是指从一个 numeric-type 到另一个 numeric-type 的转换,此转换不能用已知的隐式数值转换(第 6.1.2 节)实现,它包括:
●从 sbyte 到 byte、ushort、uint、ulong 或 char。
●从 byte 到 sbyte 和 char。
●从 short 到 sbyte、byte、ushort、uint、ulong 或 char。
●从 ushort 到 sbyte、byte、short 或 char。
●从 int 到 sbyte、byte、short、ushort、uint、ulong 或 char。
●从 uint 到 sbyte、byte、short、ushort、int 或 char。
●从 long 到 sbyte、byte、short、ushort、int、uint、ulong 或 char。
●从 ulong 到 sbyte、byte、short、ushort、int、uint、long 或 char。
●从 char 到 sbyte、byte 或 short。
●从 float 到 sbyte、byte、short、ushort、int、uint、long、ulong、char 或 decimal。
●从 double 到 sbyte、byte、short、ushort、int、uint、long、ulong、char、float 或 decimal。
●从 decimal 到 sbyte、byte、short、ushort、int、uint、long、ulong、char、float 或 double。

显示类型转换还要特别注意有符号类型数据与无符号类型数据间的转换。有符号类型的最高位为符号位,如果其为负数(最高位为 1 ),将其转为无符号类型时必需注意。


使用 Convert 类

  1. double result = x + y;
  2. tb3.Text = Convert.ToString(result);

ToString 方法与各数据类型的 Parse/TryParse 方法

ToString 示例:

  1. double result = x + y;
  2. tb3.Text = result.ToString();
  1. C# 的所有数据类型都源自于 Object 类,而 Object 类就有 ToString 方法,即 C# 中所有类型都有 ToString 方法。

101112操作符详解 - 图13

  1. Parse 只能解析格式正确的字符串数据类型。
  1. double x = double.Parse(tb1.Text);

TryParse 通过输出变量(out)来传值。

  1. double x;
  2. if (double.TryParse(tb1.Text,out x))
  3. {
  4. double y = Convert.ToDouble(tb2.Text);
  5. double result = x + y;
  6. tb3.Text = result.ToString();
  7. }

自定义类型转换操作符

更加详细的内容参见 C# 图解教程 第十六章 转换。
示例:让石头类支持显式转换为猴子。

  1. class Program
  2. {
  3. static void Main(string[] args)
  4. {
  5. var stone = new Stone();
  6. stone.Age = 5000;
  7. var wukongSun = (Monkey)stone;
  8. Console.WriteLine(wukongSun.Age);
  9. }
  10. }
  11. class Stone
  12. {
  13. public int Age;
  14. // 转换器写在被转换类型里面
  15. public static explicit operator Monkey(Stone stone)
  16. {
  17. var m = new Monkey()
  18. {
  19. Age = stone.Age / 500
  20. };
  21. return m;
  22. }
  23. }
  24. class Monkey
  25. {
  26. public int Age;
  27. }