|
1 | 1 | # Polimorphism
|
2 | 2 |
|
3 |
| -* Poly means many and morphism means forms. |
| 3 | +Poly means many and morphism means forms.In Polimorphism an object can behave many form based on context. |
4 | 4 |
|
5 |
| -## interface |
| 5 | +Polymorphism is achieved by using method overloading and method overriding. |
6 | 6 |
|
7 |
| -* Interface is blueprint of class and abstract method that means only have method thare have no implementation. |
| 7 | +## interface |
| 8 | +Interface is blueprint of class and abstract method that means only have method thare have no implementation. |
8 | 9 |
|
9 | 10 | * each method will be public
|
10 |
| -* method have no implementation but implemented class all methods has implementation |
11 |
| -* don't have constructor method |
| 11 | +* Method have no implementation |
| 12 | +* Don't have constructor method |
12 | 13 |
|
13 |
| -## overriding |
| 14 | +# overriding |
14 | 15 |
|
15 |
| -* Parent have a method and same method have the child class.that time override the parent method. |
| 16 | +* orverriding is ability to modification the behavior or implement the expected bahavior on child class . override method which is contain both parent and child class. |
16 | 17 |
|
17 | 18 | ```php
|
18 |
| -class Employee |
19 |
| -{ |
20 |
| - public function salary() |
21 |
| - { |
22 |
| - return 20000; |
23 |
| - } |
| 19 | +class Shape { |
| 20 | + public function draw() { |
| 21 | + return "Drawing a shape."; |
| 22 | + } |
24 | 23 | }
|
25 | 24 |
|
26 |
| -class SoftwareEngineer |
27 |
| -{ |
28 |
| - public function salary() |
29 |
| - { |
30 |
| - return 35000; |
31 |
| - } |
32 |
| - |
33 |
| - public function details() |
34 |
| - { |
35 |
| - echo "Software engineer salary = " . $this->salary(); |
36 |
| - } |
| 25 | +class Circle extends Shape { |
| 26 | + public function draw() { |
| 27 | + return "Drawing a circle."; |
| 28 | + } |
37 | 29 | }
|
38 | 30 |
|
39 |
| -$softwareEngineer = new SoftwareEngineer(); |
40 |
| -$softwareEngineer->details() |
| 31 | +$shape = new Shape(); |
| 32 | +echo $shape->draw(); // Outputs: "Drawing a shape." |
| 33 | + |
| 34 | +$circle = new Circle(); |
| 35 | +echo $circle->draw(); // Outputs: "Drawing a circle." |
| 36 | + |
41 | 37 | ```
|
42 | 38 |
|
43 | 39 | ## overloading
|
| 40 | +In object-oriented programming, "overloading" refers to the ability to create multiple methods with the same name but with different parameters. This is achieved by providing multiple definitions for the same method name in a class. |
| 41 | + |
| 42 | +* overload method is method inside same class, method name is same but parameters name is different. |
| 43 | + |
| 44 | +```php |
| 45 | +class Calculator { |
| 46 | + public function add($a, $b) { |
| 47 | + return $a + $b; |
| 48 | + } |
| 49 | + |
| 50 | + public function add($a, $b, $c) { |
| 51 | + return $a + $b + $c; |
| 52 | + } |
| 53 | +} |
| 54 | + |
| 55 | +$calculator = new Calculator(); |
| 56 | +echo $calculator->add(1, 2); // Outputs: 3 |
| 57 | +echo $calculator->add(1, 2, 3); // Outputs: 6 |
| 58 | +``` |
| 59 | + |
| 60 | +In this example, the Calculator class defines two methods with the same name add, but with different parameters. The correct method to be called is determined by the number of arguments that are passed to the method. When we call add with two arguments, it outputs "3", and when we call it with three arguments, it outputs "6". |
44 | 61 |
|
45 | 62 | # resources
|
46 | 63 |
|
|
0 commit comments