运算符重载

您可以重定义或重载 C# 中内置的运算符。因此,程序员也可以使用用户自定义类型的运算符。重载运算符是具有特殊名称的函数,是通过关键字 operator 后跟运算符的符号来定义的。与其他函数一样,重载运算符有返回类型和参数列表。

例如,请看下面的函数:

  1. public static Box operator+ (Box b, Box c)
  2. {
  3. Box box = new Box();
  4. box.length = b.length + c.length;
  5. box.breadth = b.breadth + c.breadth;
  6. box.height = b.height + c.height;
  7. return box;
  8. }

上面的函数为用户自定义的类 Box 实现了加法运算符(+)。它把两个 Box 对象的属性相加,并返回相加后的 Box 对象。

一、运算符重载的实现

下面的程序演示了完整的实现:

  1. using System;
  2. namespace OperatorOvlApplication
  3. {
  4. class Box
  5. {
  6. private double length; // 长度
  7. private double breadth; // 宽度
  8. private double height; // 高度
  9. public double getVolume()
  10. {
  11. return length * breadth * height;
  12. }
  13. public void setLength( double len )
  14. {
  15. length = len;
  16. }
  17. public void setBreadth( double bre )
  18. {
  19. breadth = bre;
  20. }
  21. public void setHeight( double hei )
  22. {
  23. height = hei;
  24. }
  25. // 重载 + 运算符来把两个 Box 对象相加
  26. public static Box operator+ (Box b, Box c)
  27. {
  28. Box box = new Box();
  29. box.length = b.length + c.length;
  30. box.breadth = b.breadth + c.breadth;
  31. box.height = b.height + c.height;
  32. return box;
  33. }
  34. }
  35. class Tester
  36. {
  37. static void Main(string[] args)
  38. {
  39. Box Box1 = new Box(); // 声明 Box1,类型为 Box
  40. Box Box2 = new Box(); // 声明 Box2,类型为 Box
  41. Box Box3 = new Box(); // 声明 Box3,类型为 Box
  42. double volume = 0.0; // 体积
  43. // Box1 详述
  44. Box1.setLength(6.0);
  45. Box1.setBreadth(7.0);
  46. Box1.setHeight(5.0);
  47. // Box2 详述
  48. Box2.setLength(12.0);
  49. Box2.setBreadth(13.0);
  50. Box2.setHeight(10.0);
  51. // Box1 的体积
  52. volume = Box1.getVolume();
  53. Console.WriteLine("Box1 的体积: {0}", volume);
  54. // Box2 的体积
  55. volume = Box2.getVolume();
  56. Console.WriteLine("Box2 的体积: {0}", volume);
  57. // 把两个对象相加
  58. Box3 = Box1 + Box2;
  59. // Box3 的体积
  60. volume = Box3.getVolume();
  61. Console.WriteLine("Box3 的体积: {0}", volume);
  62. Console.ReadKey();
  63. }
  64. }
  65. }

当上面的代码被编译和执行时,它会产生下列结果:

  1. Box1 的体积: 210
  2. Box2 的体积: 1560
  3. Box3 的体积: 5400

二、可重载和不可重载运算符

下表描述了 C# 中运算符重载的能力:

运算符描述
+, -, !, ~, ++, —这些一元运算符只有一个操作数,且可以被重载。
+, -, , /, %这些二元运算符带有两个操作数,且可以被重载。
==, !=, <, >, <=, >=这些比较运算符可以被重载。
&&, \\这些条件逻辑运算符不能被直接重载。
+=, -=, =, /=, %=这些赋值运算符不能被重载。
=, ., ?:, ->, new, is, sizeof, typeof这些运算符不能被重载。

实例

针对上述讨论,让我们扩展上面的实例,重载更多的运算符:

  1. using System;
  2. namespace OperatorOvlApplication
  3. {
  4. class Box
  5. {
  6. private double length; // 长度
  7. private double breadth; // 宽度
  8. private double height; // 高度
  9. public double getVolume()
  10. {
  11. return length * breadth * height;
  12. }
  13. public void setLength( double len )
  14. {
  15. length = len;
  16. }
  17. public void setBreadth( double bre )
  18. {
  19. breadth = bre;
  20. }
  21. public void setHeight( double hei )
  22. {
  23. height = hei;
  24. }
  25. // 重载 + 运算符来把两个 Box 对象相加
  26. public static Box operator+ (Box b, Box c)
  27. {
  28. Box box = new Box();
  29. box.length = b.length + c.length;
  30. box.breadth = b.breadth + c.breadth;
  31. box.height = b.height + c.height;
  32. return box;
  33. }
  34. public static bool operator == (Box lhs, Box rhs)
  35. {
  36. bool status = false;
  37. if (lhs.length == rhs.length && lhs.height == rhs.height
  38. && lhs.breadth == rhs.breadth)
  39. {
  40. status = true;
  41. }
  42. return status;
  43. }
  44. public static bool operator !=(Box lhs, Box rhs)
  45. {
  46. bool status = false;
  47. if (lhs.length != rhs.length || lhs.height != rhs.height
  48. || lhs.breadth != rhs.breadth)
  49. {
  50. status = true;
  51. }
  52. return status;
  53. }
  54. public static bool operator <(Box lhs, Box rhs)
  55. {
  56. bool status = false;
  57. if (lhs.length < rhs.length && lhs.height
  58. < rhs.height && lhs.breadth < rhs.breadth)
  59. {
  60. status = true;
  61. }
  62. return status;
  63. }
  64. public static bool operator >(Box lhs, Box rhs)
  65. {
  66. bool status = false;
  67. if (lhs.length > rhs.length && lhs.height
  68. > rhs.height && lhs.breadth > rhs.breadth)
  69. {
  70. status = true;
  71. }
  72. return status;
  73. }
  74. public static bool operator <=(Box lhs, Box rhs)
  75. {
  76. bool status = false;
  77. if (lhs.length <= rhs.length && lhs.height
  78. <= rhs.height && lhs.breadth <= rhs.breadth)
  79. {
  80. status = true;
  81. }
  82. return status;
  83. }
  84. public static bool operator >=(Box lhs, Box rhs)
  85. {
  86. bool status = false;
  87. if (lhs.length >= rhs.length && lhs.height
  88. >= rhs.height && lhs.breadth >= rhs.breadth)
  89. {
  90. status = true;
  91. }
  92. return status;
  93. }
  94. public override string ToString()
  95. {
  96. return String.Format("({0}, {1}, {2})", length, breadth, height);
  97. }
  98. }
  99. class Tester
  100. {
  101. static void Main(string[] args)
  102. {
  103. Box Box1 = new Box(); // 声明 Box1,类型为 Box
  104. Box Box2 = new Box(); // 声明 Box2,类型为 Box
  105. Box Box3 = new Box(); // 声明 Box3,类型为 Box
  106. Box Box4 = new Box();
  107. double volume = 0.0; // 体积
  108. // Box1 详述
  109. Box1.setLength(6.0);
  110. Box1.setBreadth(7.0);
  111. Box1.setHeight(5.0);
  112. // Box2 详述
  113. Box2.setLength(12.0);
  114. Box2.setBreadth(13.0);
  115. Box2.setHeight(10.0);
  116. // 使用重载的 ToString() 显示两个盒子
  117. Console.WriteLine("Box1: {0}", Box1.ToString());
  118. Console.WriteLine("Box2: {0}", Box2.ToString());
  119. // Box1 的体积
  120. volume = Box1.getVolume();
  121. Console.WriteLine("Box1 的体积: {0}", volume);
  122. // Box2 的体积
  123. volume = Box2.getVolume();
  124. Console.WriteLine("Box2 的体积: {0}", volume);
  125. // 把两个对象相加
  126. Box3 = Box1 + Box2;
  127. Console.WriteLine("Box3: {0}", Box3.ToString());
  128. // Box3 的体积
  129. volume = Box3.getVolume();
  130. Console.WriteLine("Box3 的体积: {0}", volume);
  131. //comparing the boxes
  132. if (Box1 > Box2)
  133. Console.WriteLine("Box1 大于 Box2");
  134. else
  135. Console.WriteLine("Box1 不大于 Box2");
  136. if (Box1 < Box2)
  137. Console.WriteLine("Box1 小于 Box2");
  138. else
  139. Console.WriteLine("Box1 不小于 Box2");
  140. if (Box1 >= Box2)
  141. Console.WriteLine("Box1 大于等于 Box2");
  142. else
  143. Console.WriteLine("Box1 不大于等于 Box2");
  144. if (Box1 <= Box2)
  145. Console.WriteLine("Box1 小于等于 Box2");
  146. else
  147. Console.WriteLine("Box1 不小于等于 Box2");
  148. if (Box1 != Box2)
  149. Console.WriteLine("Box1 不等于 Box2");
  150. else
  151. Console.WriteLine("Box1 等于 Box2");
  152. Box4 = Box3;
  153. if (Box3 == Box4)
  154. Console.WriteLine("Box3 等于 Box4");
  155. else
  156. Console.WriteLine("Box3 不等于 Box4");
  157. Console.ReadKey();
  158. }
  159. }
  160. }

当上面的代码被编译和执行时,它会产生下列结果:

  1. Box1 (6, 7, 5)
  2. Box2 (12, 13, 10)
  3. Box1 的体积: 210
  4. Box2 的体积: 1560
  5. Box3 (18, 20, 15)
  6. Box3 的体积: 5400
  7. Box1 不大于 Box2
  8. Box1 小于 Box2
  9. Box1 不大于等于 Box2
  10. Box1 小于等于 Box2
  11. Box1 不等于 Box2
  12. Box3 等于 Box4

🔚