在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1、设计一个控制台应用程序,定义一个MyPoint类,该类能表示二维平面空间的点,完成点类及运算符重载等相关功能。具体要求如下: (1)MyPoint类中定义2个私有字段x和y及相应的构造函数。 (2)MyPoint类中重载ToString方法输出坐标x和y的值。 (3)MyPoint类中重载一元运算符“-”。 (4)MyPoint类中重载二元运算符“+”和“-”。 (5)MyPoint类中重载二元运算符“>”和“<”。 (6)MyPoint类中重载二元运算符“==”和“!=”。 (7)在Main方法中测试上述运算符。
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace Myproject 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 Mypoint a = new Mypoint(1, 1); 14 Mypoint b = new Mypoint(1, 1); 15 Mypoint c = new Mypoint(2, 2); 16 Console.WriteLine( "Check: a+b " + (a + b) ); 17 Console.WriteLine( "Check: a-b " + (a - b) ); 18 19 Console.WriteLine( "Check: < , > , != , == " ); 20 if (a < c) Console.WriteLine("a < c "); 21 if( c > a) Console.WriteLine("c > a" ); 22 23 if( a + b != a) 24 { 25 Console.WriteLine("a + b != a"); 26 } 27 28 if ( a + b == c) 29 { 30 Console.WriteLine("a + b == c"); 31 } 32 } 33 } 34 public class Mypoint 35 { 36 int x, y; 37 38 public Mypoint(int x, int y) 39 { 40 this.x = x; 41 this.y = y; 42 } 43 public Mypoint() : this(0, 0) { } 44 public int X { get { return x; } set { x = value; } } 45 public int Y { get { return y; } set { y = value; } } 46 public override string ToString() 47 { 48 return string.Format("({0},{1})", x, y); 49 } 50 51 public static Mypoint operator - (Mypoint u) 52 { 53 Mypoint p = new Mypoint(); 54 p.X = -u.X; 55 p.Y = -u.Y; 56 return p; 57 } 58 59 public static Mypoint operator + (Mypoint u, Mypoint v) 60 { 61 Mypoint p = new Mypoint(); 62 p.X = u.X + v.X; 63 p.Y = u.Y + v.Y; 64 return p; 65 } 66 67 public static Mypoint operator -(Mypoint u, Mypoint v) 68 { 69 Mypoint p = new Mypoint(); 70 p.X = u.X - v.X; 71 p.Y = u.Y - v.Y; 72 return p; 73 } 74 75 public static bool operator >(Mypoint u, Mypoint v) 76 { 77 bool status = false ; 78 if( u.X >= v.X && u.Y >= v.Y) 79 { 80 status = true; 81 } 82 return status; 83 } 84 85 public static bool operator <(Mypoint u, Mypoint v) 86 { 87 bool status = false; 88 if (u.X <= v.X && u.Y <= v.Y) 89 { 90 status = true; 91 } 92 return status; 93 } 94 95 public static bool operator ==(Mypoint u, Mypoint v) 96 { 97 bool status = false; 98 if (u.X == v.X && u.Y == v.Y) 99 { 100 status = true; 101 } 102 return status; 103 } 104 105 public static bool operator !=(Mypoint u, Mypoint v) 106 { 107 bool status = false; 108 if (u.X != v.X || u.Y != v.Y) 109 { 110 status = true; 111 } 112 return status; 113 } 114 115 } 116 117 }
2、设计一个控制台应用程序,定义一个Box类,该类表示一个立方体,完成该类运算符重载等相关功能。具体要求如下: (1)Box类中定义3个私有字段(代表长、宽、高)及相应的构造函数 (2)MyPoint类中重载ToString方法输出长宽高的值。 (3)Box类中重载一元运算符“-”。 (4)Box类中重载二元运算符“+”和“-”。 (5)Box类中重载二元运算符“>”和“<”。 (6)Box类中重载二元运算符“==”和“!=”。 (7)在Main方法中测试上述运算符。
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace Myproject 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 Box b1 = new Box(1, 1, 1); 14 Box b2 = new Box(2, 2, 2); 15 Box b3 = new Box(3, 3, 3); 16 17 Console.WriteLine("Check: b1 + b2 " + (b1 + b2)); 18 Console.WriteLine("Check: -b1 " + b1); 19 Console.WriteLine("Check: > , < , == , != "); 20 if (b2 > b1) Console.WriteLine("b2 > b1"); 21 if (b1 < b2) Console.WriteLine("b1 < b2"); 22 23 if (b1 + b2 == b3) Console.WriteLine("b1 + b2 == b3 "); 24 if (b1 + b2 != b1) Console.WriteLine("b1 + b2 != b1 "); 25 } 26 } 27 class Box 28 { 29 private int length, width, height; 30 31 public Box(int length, int width, int height) 32 { 33 this.length = length; 34 this.width = width; 35 this.height = height; 36 } 37 38 public Box() : this(0, 0, 0) { } 39 public int Length { get { return length; } set { length = value; } } 40 public int Width { get { return width; } set { width = value; } } 41 public int Height { get { return height; } set { height = value; } } 42 43 public override string ToString() 44 { 45 return string.Format("( {0} , {1} , {2} )",length,width,height); 46 } 47 public static Box operator +(Box rhs) 48 { 49 Box res = new Box(); 50 res.height = - rhs.height; 51 res.length = - rhs.length; 52 res.width = - rhs.width; 53 return res; 54 } 55 56 public static Box operator + (Box lhs , Box rhs) 57 { 58 Box res = new Box(); 59 res.height = lhs.height + rhs.height; 60 res.length = lhs.length + rhs.length; 61 res.width = lhs.width + rhs.width; 62 return res; 63 } 64 65 public static Box operator - (Box lhs, Box rhs) 66 { 67 Box res = new Box(); 68 res.height = lhs.height - rhs.height; 69 res.length = lhs.length - rhs.length; 70 res.width = lhs.width - rhs.width; 71 return res; 72 } 73 74 public static bool operator >(Box lhs, Box rhs) 75 { 76 bool status = false; 77 if (lhs.length > rhs.length && 78 lhs.width > rhs.width && 79 lhs.height > rhs.height) 80 { 81 status = true; 82 } 83 return status; 84 } 85 86 public static bool operator <(Box lhs, Box rhs) 87 { 88 bool status = false; 89 if (lhs.length < rhs.length && 90 lhs.width < rhs.width && 91 lhs.height < rhs.height) 92 { 93 status = true; 94 } 95 return status; 96 } 97 98 public static bool operator == (Box lhs, Box rhs) 99 { 100 bool status = false; 101 if (lhs.length == rhs.length && 102 lhs.width == rhs.width && 103 lhs.height == rhs.height) 104 { 105 status = true; 106 } 107 return status; 108 } 109 110 public static bool operator !=(Box lhs, Box rhs) 111 { 112 bool status = false; 113 if (lhs.length != rhs.length || 114 lhs.width != rhs.width || 115 lhs.height != rhs.height) 116 { 117 status = true; 118 } 119 return status; 120 } 121 } 122 }
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论