Visual

C#语言入门详解(010 011 012)——操作符详解.mp4 (939.39MB) 操作符概览

010,011,012 操作符详解 - 图2

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

操作符的本质

  • 操作符的本质是函数(即算法)的“简记法”
    • 假如没有发明“+”,只有 Add 函数,算式 3+4+5 将可以写成 Add(Add(3,4),5)
    • 假如没有发明“”,只有 Mul 函数,那么算式 `3+45只能写成Add(3,Mul(4,5))`
  • 操作符不能脱离与它关联的数据类型
    • 可以说操作符就是与固定数据类型相关联的一套基本算法的简记法
    • 示例:为自定义数据类型创建操作符

下例中操作符 + 就是 GetMarry 方法的简记。

  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))

各类操作符的示例

010,011,012 操作符详解 - 图3

基本操作符

. 成员访问操作符

  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. 访问外层名称空间中的子名称空间
  2. 访问名称空间中的类型
  3. 访问类型的静态成员
  4. 访问对象中的实例成员

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. myAction();
  12. }
  13. }
  14. class Calculator
  15. {
  16. public double Add(double a,double b)
  17. {
  18. return a + b;
  19. }
  20. public void PrintHello()
  21. {
  22. Console.WriteLine("Hello");
  23. }
  24. }
  25. }

a[x] 元素访问操作符

访问数组元素:

  1. int[] myIntArray = new int[] { 1, 2, 3, 4, 5 };
  2. Console.WriteLine(myIntArray[0]);
  3. 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);

先赋值,再自增。
010,011,012 操作符详解 - 图4

typeof 操作符

检测类型元数据(Metadata)。

  1. // Metadata
  2. var t = typeof(int);
  3. Console.WriteLine(t.Namespace);
  4. Console.WriteLine(t.FullName);
  5. Console.WriteLine(t.Name);
  6. int c = t.GetMethods().Length;
  7. Console.WriteLine(c);
  8. foreach (var m in t.GetMethods())
  9. {
  10. Console.WriteLine(m.Name);
  11. }

010,011,012 操作符详解 - 图5

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. // 这就牵扯到我们使用枚举时,要注意枚举中是否有对应 0 的;创建枚举类型时,最好有一个对应 0 的,以免他人查找我们枚举的 default 值时报错。
  15. Level level = default(Level);
  16. Console.WriteLine(level);
  17. }
  18. }
  19. enum Level
  20. {
  21. Low = 1,
  22. Mid = 2,
  23. High = 0
  24. }
  25. }

:::tips 注:枚举类型的默认值均为0,不论枚举列表中有无该元素,除非单独声明。 :::

new 操作符

new 操作符基本功能。

  1. static void Main(string[] args)
  2. {
  3. // 在内存中创建类型实例,调用实例构造器
  4. // 把实例地址通过赋值操作符交给访问它的变量
  5. var myForm = new Form();
  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];

:::info 为匿名类型创建对象。展现Var的最强大之处 :::

  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);

010,011,012 操作符详解 - 图6

:::info 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();
  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
  19. {
  20. // new 修饰符
  21. new public void Report()
  22. {
  23. Console.WriteLine("I'm CS student.");
  24. }
  25. }

checked & unchecked 操作符

检查一个值在内存中是否有溢出
未 check 时,x+1直接就溢出变成 0 了。

  1. uint x = uint.MaxValue;
  2. Console.WriteLine(x);
  3. var binStr = Convert.ToString(x, 2);
  4. Console.WriteLine(binStr);
  5. uint y = x + 1;
  6. Console.WriteLine(y);

:::tips 查看二进制,Convert.ToString(x,2)
::: 010,011,012 操作符详解 - 图7

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. }

010,011,012 操作符详解 - 图8

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. 默认情况下 sizeof 只能获取结构体类型的实例在内存中的字节数
    • int、uint、double 可以
    • string、object 不行
  2. 非默认情况下,可以使用 sizeof 获取自定义结构体类型的大小,但需要把它放在不安全的上下文中

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

  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. }

010,011,012 操作符详解 - 图10

注: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 操作符

:::info &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);

010,011,012 操作符详解 - 图11

! 非操作符

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

  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 前置自增自减操作符

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

  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;

% 取余

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

010,011,012 操作符详解 - 图12

加法操作符

三大用途

  • 计算加法
  • 事件绑定
  • 字符串拼接

位移操作符

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

当没有溢出时,左移就是乘 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);

010,011,012 操作符详解 - 图13

关系操作符

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);

类型检测操作符

010,011,012 操作符详解 - 图14

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);

010,011,012 操作符详解 - 图15

as 操作符

  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. }

逻辑与 &| 异或 ^

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

条件与 && 条件或 ||

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

?? null 合并操作符

  1. //Nullable<int> x = null;
  2. int? x = null;
  3. Console.WriteLine(x.HasValue);
  4. // x 如果为 null,就拿 1 来代替。
  5. int y = x ?? 1;
  6. Console.WriteLine(y);

?: 条件操作符

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

  1. int x = 80;
  2. // 使用 () 将条件括起来,提高可读性。
  3. string str = (x >= 60) ? "Pass" : "Failed";
  4. Console.WriteLine(str);

赋值和 Lambda 表达式

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

类型转换

010,011,012 操作符详解 - 图16

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

隐式(implicit)类型转换

不丢失精度的转换

《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),多态就基于面向对象语言支持子类向父类的隐式转换。

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

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

显式(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();

C# 的所有数据类型都源自于 Object 类,而 Object 类就有 ToString 方法,即 C# 中所有类型都有 ToString 方法。
010,011,012 操作符详解 - 图17

Parse 只能解析格式正确的字符串数据类型。

  1. double x = double.Parse(tb1.Text);

TryParse 通过输出变量(out)来传值。
程序开发中,免不了不同数据类型之间的转换。C#中针对转换有了一个TryParse的方法。
如果转换成功则返回true。否则返回false

  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. }

参考

Docs Expressions