-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTemperature.pas
251 lines (194 loc) · 6.17 KB
/
Temperature.pas
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
{**************************************************************************************}
{ }
{ Temperature Demo }
{ Class operators demonstration }
{ }
{ Copyright (c) 2004-2014 Chua Chee Wee }
{ Read article at http://chuacw.ath.cx/blogs/chuacw/archive/2004/04/29/464.aspx }
{ http://chuacw.ath.cx/blogs/chuacw/archive/tags/Delphi/default.aspx }
{**************************************************************************************}
unit Temperature;
interface
uses SysUtils;
type
Kelvin = packed record
private
FValue: Double;
public
class operator Add(Left, Right: Kelvin): Kelvin;
class operator Implicit(AValue: Double): Kelvin;
class operator Implicit(AValue: Kelvin): Double;
class operator Implicit(AValue: Integer): Kelvin;
class operator Implicit(AValue: Kelvin): Integer;
class operator Subtract(Left, Right: Kelvin): Kelvin;
function ToString: string;
end;
Fahrenheit = packed record
private
FValue: Double;
public
class operator Add(Left, Right: Fahrenheit): Fahrenheit;
class operator Implicit(AValue: Kelvin): Fahrenheit;
class operator Implicit(AValue: Fahrenheit): Kelvin;
class operator Implicit(AValue: Double): Fahrenheit;
class operator Implicit(AValue: Fahrenheit): Double;
class operator Implicit(AValue: Integer): Fahrenheit;
class operator Implicit(AValue: Fahrenheit): Integer;
class operator Implicit(AValue: string): Fahrenheit;
class operator Implicit(AValue: Fahrenheit): string;
class operator Subtract(Left, Right: Fahrenheit): Fahrenheit;
function ToString: string;
end;
Celsius = packed record
private
FValue: Double;
public
class operator Add(Left, Right: Celsius): Celsius;
class operator Implicit(AValue: Double): Celsius;
class operator Implicit(AValue: Celsius): Double;
class operator Implicit(AValue: Fahrenheit): Celsius;
class operator Implicit(AValue: Celsius): Kelvin;
class operator Implicit(AValue: Kelvin): Celsius;
class operator Implicit(AValue: Celsius): Integer;
class operator Implicit(AValue: Integer): Celsius;
class operator Implicit(AValue: string): Celsius;
class operator Subtract(Left, Right: Celsius): Celsius;
function ToString: string;
end;
implementation
{ Kelvin }
class operator Kelvin.Add(Left, Right: Kelvin): Kelvin;
begin
Result.FValue := Left.FValue + Right.FValue;
end;
class operator Kelvin.Implicit(AValue: Double): Kelvin;
begin
Result.FValue := AValue;
end;
class operator Kelvin.Implicit(AValue: Kelvin): Double;
begin
Result := AValue.FValue;
end;
class operator Kelvin.Implicit(AValue: Integer): Kelvin;
begin
Result.FValue := AValue;
end;
class operator Kelvin.Implicit(AValue: Kelvin): Integer;
begin
Result := Trunc(AValue.FValue);
end;
class operator Kelvin.Subtract(Left, Right: Kelvin): Kelvin;
begin
Result.FValue := Left.FValue - Right.FValue;
end;
function Kelvin.ToString: string;
begin
Result := Format('%.2f', [FValue]);
end;
{ Fahrenheit }
class operator Fahrenheit.Add(Left, Right: Fahrenheit): Fahrenheit;
begin
Result.FValue := Left.FValue + Right.FValue;
end;
(*
class operator Fahrenheit.Explicit(AValue: TObject): Fahrenheit;
begin
{$IFDEF DEBUG}
WriteLn('Fahrenheit Explicit');
{$ENDIF}
if AValue is Fahrenheit then
Result := (AValue as Fahrenheit).FValue else
if AValue is Celsius then
Result := (9/5*(AValue as Celsius).FValue)+32;
end;
*)
class operator Fahrenheit.Implicit(AValue: Double): Fahrenheit;
begin
Result.FValue := AValue;
end;
class operator Fahrenheit.Implicit(AValue: Fahrenheit): Double;
begin
Result := AValue.FValue;
end;
class operator Fahrenheit.Implicit(AValue: Fahrenheit): Integer;
begin
Result := Trunc(AValue.FValue);
end;
class operator Fahrenheit.Implicit(AValue: Fahrenheit): Kelvin;
begin
Result.FValue := (AValue.FValue + 459.67000) / 1.80000;
end;
class operator Fahrenheit.Implicit(AValue: Fahrenheit): string;
begin
Result := AValue.ToString;
end;
class operator Fahrenheit.Implicit(AValue: Integer): Fahrenheit;
begin
Result.FValue := AValue;
end;
class operator Fahrenheit.Implicit(AValue: Kelvin): Fahrenheit;
begin
Result.FValue := (AValue.FValue * 1.80000) - 459.67000;
end;
class operator Fahrenheit.Implicit(AValue: string): Fahrenheit;
begin
Result := StrToFloat(AValue);
end;
class operator Fahrenheit.Subtract(Left, Right: Fahrenheit): Fahrenheit;
begin
Result.FValue := Left.FValue - Right.FValue;
end;
function Fahrenheit.ToString: System.String;
begin
Result := Format('%.2f', [FValue]);
end;
{ Celsius }
class operator Celsius.Add(Left, Right: Celsius): Celsius;
begin
Result.FValue := Left.FValue + Right.FValue;
end;
class operator Celsius.Implicit(AValue: Double): Celsius;
begin
Result.FValue := AValue;
end;
class operator Celsius.Implicit(AValue: Celsius): Double;
begin
Result := AValue.FValue;
end;
class operator Celsius.Implicit(AValue: Integer): Celsius;
begin
Result.FValue := AValue;
end;
class operator Celsius.Implicit(AValue: Kelvin): Celsius;
begin
Result.FValue := AValue.FValue - 273.15000;
end;
class operator Celsius.Implicit(AValue: Celsius): Kelvin;
begin
Result.FValue := AValue.FValue + 273.15000;
end;
class operator Celsius.Implicit(AValue: Celsius): Integer;
begin
Result := Trunc(AValue.FValue);
end;
class operator Celsius.Implicit(AValue: string): Celsius;
begin
Result := StrToFloat(AValue);
end;
class operator Celsius.Implicit(AValue: Fahrenheit): Celsius;
begin
{$IFDEF DEBUG}
WriteLn('Implicit TObject');
WriteLn(Fahrenheit(AValue).FValue:0:2);
{$ENDIF}
Result.FValue := (AValue.FValue - 32) * (5/9);
end;
class operator Celsius.Subtract(Left, Right: Celsius): Celsius;
begin
Result.FValue := Left.FValue - Right.FValue;
end;
function Celsius.ToString: System.String;
begin
Result := Format('%.2f', [FValue]);
end;
end.