-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpolymorphism.php
More file actions
147 lines (124 loc) · 2.79 KB
/
polymorphism.php
File metadata and controls
147 lines (124 loc) · 2.79 KB
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
<?php
// Example 1: -----------------------------------------------------------------
// source:
// https://leanpub.com/the-essentials-of-object-oriented-php
// Context:
// Shapes
// using: interfaces
interface Shape
{
public function calcArea();
}
class Circle implements Shape
{
private $radius;
public function __construct($radius)
{
$this -> radius = $radius;
}
public function calcArea()
{
return $this -> radius * $this -> radius * pi();
}
}
class Rectangle implements Shape
{
private $width;
private $height;
public function __construct($width, $height)
{
$this -> width = $width;
$this -> height = $height;
}
public function calcArea()
{
return $this -> width * $this -> height;
}
}
echo (new Rectangle(5, 5))->calcArea() . "\n" . PHP_EOL;
echo (new Circle(3))->calcArea() . "\n" . PHP_EOL;
// Example 2: -----------------------------------------------------------------
// source:
// https://codescracker.com/php/php-polymorphism.htm
// Context: Like
// using interfaces
interface TutorialILike
{
public function likemsg();
}
class LikePHP implements TutorialILike
{
private $topic;
public function __construct($topic)
{
$this->topic = $topic;
}
public function likemsg()
{
echo 'I just love to read ' . $this->topic . ' Tutorials' . PHP_EOL;
}
}
class LikeJava implements TutorialILike
{
private $topic;
public function __construct($topic)
{
$this->topic = $topic;
}
public function likemsg()
{
echo 'I just love to read ' . $this->topic . ' Tutorials' . PHP_EOL;
}
}
// Simulation
echo (new LikePHP('PHP'))->likemsg();
echo (new LikeJava('Java'))->likemsg();
// Example 3: -----------------------------------------------------------------
// source:
// Context:
// Animal Eating function
// using interfaces
interface Animal
{
public function eat(string $food): bool;
public function talk(bool $shout): string;
}
class Cat implements Animal
{
public function eat(string $food): bool
{
return $food === 'tuna';
}
public function talk(bool $shout): string
{
if ($shout === true) {
return 'MEOW!' . PHP_EOL;
}
return 'Meow.' . PHP_EOL;
}
}
class Dog implements Animal
{
// Properties
// Methods
public function eat(string $food): bool
{
return $food === 'dog food' || $food === 'meat';
}
public function talk(bool $shout): string
{
if ($shout === true) {
return 'WOOF!' . PHP_EOL;
}
return 'Woof.' . PHP_EOL;
}
}
// Simulation
$pets = array(
'felix' => new Cat(),
'oscar' => new Dog(),
'snowflake' => new Cat(),
);
foreach ($pets as $pet) {
echo $pet->talk(false);
}