Skip to content

Commit ce1f8db

Browse files
committed
polymorphism
1 parent 4479f6d commit ce1f8db

File tree

1 file changed

+43
-26
lines changed

1 file changed

+43
-26
lines changed

polymorphism/readme.md

+43-26
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,63 @@
11
# Polimorphism
22

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.
44

5-
## interface
5+
Polymorphism is achieved by using method overloading and method overriding.
66

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.
89

910
* 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
1213

13-
## overriding
14+
# overriding
1415

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.
1617

1718
```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+
}
2423
}
2524

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+
}
3729
}
3830

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+
4137
```
4238

4339
## 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".
4461

4562
# resources
4663

0 commit comments

Comments
 (0)