-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathprototype.dart
72 lines (59 loc) · 1.65 KB
/
prototype.dart
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
abstract class Shape {
late int x;
late int y;
Shape clone();
}
class Rectangle implements Shape {
late int height;
late int width;
late int x;
late int y;
late int _hashCode;
bool isClone = false;
String get cloneStatus => isClone ? "is a clone" : "is an original gangster";
Rectangle(this.height, this.width, this.x, this.y);
Rectangle.fromSource(Rectangle source) {
height = source.height;
width = source.width;
x = source.x;
y = source.y;
_hashCode = source.hashCode;
isClone = true;
}
@override
Rectangle clone() {
return Rectangle.fromSource(this);
}
@override
int get hashCode {
_hashCode = DateTime.now().millisecondsSinceEpoch;
return _hashCode;
}
@override
bool operator ==(dynamic other) {
if (other is! Rectangle) return false;
Rectangle rect = other;
return rect.isClone && rect.hashCode == hashCode;
}
}
void main() {
var ogRect = Rectangle(0, 0, 100, 100);
var cloneRect = ogRect.clone();
var someOtherRect = Rectangle(0, 0, 100, 100);
print("ogRect ${ogRect.cloneStatus}.");
print("cloneRect ${cloneRect.cloneStatus}.");
print("someOtherRect ${someOtherRect.cloneStatus}.");
String cloneIsClone =
ogRect == cloneRect ? "is a clone of" : "is not a clone of";
print("\r\ncloneRect $cloneIsClone ogRect.");
String someRectIsClone =
ogRect == someOtherRect ? "is a clone of" : "is not a clone of";
print("someOtherRect $someRectIsClone ogRect.");
/*
ogRect is an original gangster.
cloneRect is a clone.
someOtherRect is an original gangster.
cloneRect is a clone of ogRect.
someOtherRect is not a clone of ogRect.
*/
}