隐式转换运算符(implicit)

作者:追风剑情 发布于:2015-10-15 15:00 分类:C#

以下是官方示例

  1. using System;
  2.  
  3. namespace ImplicitTest
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Digit dig = new Digit(7);
  10. //调用隐式转换double操作符
  11. double num = dig;
  12. //调用隐式转换Digit操作符
  13. Digit dig2 = 12;
  14. Console.WriteLine("num = {0} dig2 = {1}", num, dig2.val);
  15. Console.ReadLine();
  16. }
  17. }
  18.  
  19. class Digit
  20. {
  21. public Digit(double d) { val = d; }
  22. public double val;
  23.  
  24. // Digit转double
  25. public static implicit operator double(Digit d)
  26. {
  27. return d.val;
  28. }
  29. // double转Digit
  30. public static implicit operator Digit(double d)
  31. {
  32. return new Digit(d);
  33. }
  34. }
  35. }

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号