-
Notifications
You must be signed in to change notification settings - Fork 8
/
OperatorOverloadingSample.cs
187 lines (157 loc) · 5.9 KB
/
OperatorOverloadingSample.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
using System;
namespace CodeSamples.Alterations
{
#region Calculation Class
/// <summary>
/// List of overloadable operators: https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/operator-overloading
/// </summary>
public class CalculationClass
{
public int A { get; set; }
#region Constructors
public CalculationClass() : this(0) { }
public CalculationClass(int initialValue)
{
A = initialValue;
}
#endregion
#region Addition (Operator +)
public static CalculationClass operator +(CalculationClass value) => value;
public static CalculationClass operator +(CalculationClass firstValue, CalculationClass secondValue)
{
return new CalculationClass(firstValue.A + secondValue.A);
}
public static CalculationClass operator +(CalculationClass firstValue, int secondValue)
{
return firstValue + new CalculationClass(secondValue);
}
public static CalculationClass operator +(int firstValue, CalculationClass secondValue)
{
return secondValue + new CalculationClass(firstValue);
}
#endregion
#region Subtraction (Operator -)
public static CalculationClass operator -(CalculationClass value) => new CalculationClass(-value.A);
public static CalculationClass operator -(CalculationClass firstValue, CalculationClass secondValue)
{
return new CalculationClass(firstValue.A - secondValue.A);
}
#endregion
public static CalculationClass operator *(CalculationClass firstValue, CalculationClass secondValue)
{
return new CalculationClass(firstValue.A * secondValue.A);
}
public static CalculationClass operator /(CalculationClass firstValue, CalculationClass secondValue)
{
return new CalculationClass(firstValue.A / secondValue.A);
}
public static bool operator true(CalculationClass value)
{
return value.A != 0;
}
public static bool operator false(CalculationClass value)
{
return value.A == 0;
}
#region Equality
public static Boolean operator ==(CalculationClass firstValue, CalculationClass secondValue)
{
return (firstValue.A == secondValue.A);
}
public static Boolean operator !=(CalculationClass firstValue, CalculationClass secondValue)
{
return (firstValue.A != secondValue.A);
}
#endregion
#region Comparing
#region Operator >
public static Boolean operator >(CalculationClass firstValue, CalculationClass secondValue)
{
return (firstValue.A > secondValue.A);
}
public static Boolean operator >(CalculationClass firstValue, int secondValue)
{
return (firstValue.A > secondValue);
}
public static Boolean operator >(int firstValue, CalculationClass secondValue)
{
return (firstValue > secondValue.A);
}
#endregion
#region Operator <
public static Boolean operator <(CalculationClass firstValue, CalculationClass secondValue)
{
return (firstValue.A < secondValue.A);
}
public static Boolean operator <(CalculationClass firstValue, int secondValue)
{
return (firstValue.A < secondValue);
}
public static Boolean operator <(int firstValue, CalculationClass secondValue)
{
return (firstValue < secondValue.A);
}
#endregion
#region Operator >=
public static Boolean operator >=(CalculationClass firstValue, CalculationClass secondValue)
{
return (firstValue.A >= secondValue.A);
}
#endregion
#region Operator <=
public static Boolean operator <=(CalculationClass firstValue, CalculationClass secondValue)
{
return (firstValue.A <= secondValue.A);
}
#endregion
#endregion
public override bool Equals(object obj)
{
var value = obj as CalculationClass;
if (obj == null)
{
return false;
}
bool result = this.A == value.A;
return result;
}
public override int GetHashCode()
{
return this.ToString().GetHashCode();
}
public override string ToString()
{
return String.Format($"{this.A}");
}
}
#endregion
public class OperatorOverloadingSample : SampleExecute
{
public override void Execute()
{
Title("OperatorOverloadingSampleExecute");
CalculationClass A = new CalculationClass() { A = 100 };
CalculationClass B = new CalculationClass() { A = 3 };
CalculationClass C = new CalculationClass() { A = 0 };
var sum = A + B;
var diff = A - B;
var product = A * B;
var coeff = A / B;
var equal = A == B;
var notEqual = A != B;
//
Console.WriteLine($"Original => A = {A}, B = {B}");
Console.WriteLine($"Sum => A + B = {sum}");
Console.WriteLine($"Diff => A - B = {diff}");
Console.WriteLine($"Product => A * B = {product}");
Console.WriteLine($"Coeff => A / B = {coeff}");
Console.WriteLine($"Equal => A == B = {equal}");
Console.WriteLine($"notEqual => A != B = {notEqual}");
Console.WriteLine($"true/false => A = {(A ? "true" : "false")}");
Console.WriteLine($"true/false => B = {(B ? "true" : "false")}");
Console.WriteLine($"true/false => C (=) = {(C ? "true" : "false")}");
//
Finish();
}
}
}