Skip to content

Commit 362fa8f

Browse files
authored
Update README.md
1 parent de2deb0 commit 362fa8f

File tree

1 file changed

+131
-33
lines changed

1 file changed

+131
-33
lines changed

Day_17_MethodOverriding/README.md

+131-33
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,152 @@
1-
# Java Method Overriding
1+
# Java Method Overloading
22

3-
Method overriding is a fundamental concept in Java's object-oriented programming (OOP) that allows a subclass to provide a specific implementation of a method that is already defined in its superclass. When a subclass defines a method with the same name, return type, and parameters as a method in its superclass, it is said to be overriding that method.
3+
**Tutorial Name**: Codes with Pankaj
4+
**Website**: www.codeswithpankaj.com
45

5-
Here are the key points to understand about method overriding in Java:
6+
#### Introduction to Method Overloading in Java
67

7-
1. **Inheritance**: Method overriding is closely related to inheritance. It enables a subclass to inherit a method from its superclass and then customize or extend its behavior.
8+
Method overloading is one of the most fundamental features in Java that allows a class to have more than one method with the same name. This is possible by varying the method parameters. The difference in the number of parameters or the type of parameters allows the Java compiler to differentiate between the methods, despite having the same name.
89

9-
2. **Rules for Method Overriding**:
10-
- The method in the subclass must have the same method signature (i.e., the same name, return type, and parameter list) as the method in the superclass.
11-
- The access level of the overriding method cannot be more restrictive than the access level of the overridden method. It can be the same or less restrictive.
12-
- The overriding method cannot throw checked exceptions that are broader than the exceptions thrown by the overridden method. However, it can throw narrower or unchecked exceptions.
13-
- The `@Override` annotation is optional but recommended for clarity. It helps you ensure that you are indeed overriding a method from the superclass.
10+
This feature helps in increasing the readability and reusability of the code, as you can perform similar tasks using the same method name but with different inputs.
1411

15-
3. **Use Cases for Method Overriding**:
16-
- Polymorphism: Method overriding is a key mechanism for achieving polymorphism in Java. It allows you to write code that can work with objects of different subclasses through a common interface.
17-
- Customization: Subclasses can provide specialized implementations of methods to meet their specific needs.
18-
- Extension: Subclasses can extend the behavior of their superclass by adding additional functionality to overridden methods.
12+
---
1913

20-
Here's an example of method overriding in Java:
14+
#### Key Concepts of Method Overloading
15+
16+
1. **Method Signature**: A method signature in Java consists of the method's name and its parameter list (number, type, and order of parameters). For method overloading to occur, the method signatures must differ.
17+
18+
2. **Return Type**: In method overloading, the return type of methods can be the same or different. However, the return type alone is not enough to distinguish between overloaded methods.
19+
20+
3. **Parameter Variation**: Methods can be overloaded by changing the:
21+
- **Number of parameters**: Methods with the same name but different numbers of parameters.
22+
- **Type of parameters**: Methods with the same name but different data types for parameters.
23+
- **Order of parameters**: Methods with the same name but different sequences of data types in the parameter list.
24+
25+
---
26+
27+
#### Example 1: Overloading by Number of Parameters
2128

2229
```java
23-
class Shape {
24-
void draw() {
25-
System.out.println("Drawing a shape");
30+
public class CodesWithPankaj {
31+
// Method with two parameters
32+
public int add(int a, int b) {
33+
return a + b;
2634
}
27-
}
2835

29-
class Circle extends Shape {
30-
@Override
31-
void draw() {
32-
System.out.println("Drawing a circle");
36+
// Overloaded method with three parameters
37+
public int add(int a, int b, int c) {
38+
return a + b + c;
3339
}
34-
}
3540

36-
class Rectangle extends Shape {
37-
@Override
38-
void draw() {
39-
System.out.println("Drawing a rectangle");
41+
public static void main(String[] args) {
42+
CodesWithPankaj obj = new CodesWithPankaj();
43+
System.out.println("Sum of two numbers: " + obj.add(10, 20)); // Calls first method
44+
System.out.println("Sum of three numbers: " + obj.add(10, 20, 30)); // Calls second method
4045
}
4146
}
47+
```
48+
49+
**Explanation**:
50+
- The method `add(int a, int b)` is overloaded with another method `add(int a, int b, int c)`.
51+
- The first method adds two numbers, and the second method adds three numbers.
52+
- The Java compiler differentiates the methods based on the number of parameters passed during method invocation.
53+
54+
---
55+
56+
#### Example 2: Overloading by Type of Parameters
57+
58+
```java
59+
public class CodesWithPankaj {
60+
// Method to add two integers
61+
public int add(int a, int b) {
62+
return a + b;
63+
}
64+
65+
// Overloaded method to add two double values
66+
public double add(double a, double b) {
67+
return a + b;
68+
}
4269

43-
public class MethodOverridingExample {
4470
public static void main(String[] args) {
45-
Shape shape1 = new Circle();
46-
Shape shape2 = new Rectangle();
71+
CodesWithPankaj obj = new CodesWithPankaj();
72+
System.out.println("Sum of two integers: " + obj.add(10, 20)); // Calls first method
73+
System.out.println("Sum of two doubles: " + obj.add(10.5, 20.5)); // Calls second method
74+
}
75+
}
76+
```
77+
78+
**Explanation**:
79+
- Here, the method `add(int a, int b)` is overloaded with `add(double a, double b)`.
80+
- The first method handles integer addition, while the second method handles double addition.
81+
- The Java compiler uses the data type of the arguments to determine which method to invoke.
82+
83+
---
4784

48-
shape1.draw(); // Calls the draw method in Circle
49-
shape2.draw(); // Calls the draw method in Rectangle
85+
#### Example 3: Overloading by Order of Parameters
86+
87+
```java
88+
public class CodesWithPankaj {
89+
// Method with int and double as parameters
90+
public void display(int a, double b) {
91+
System.out.println("Integer: " + a + ", Double: " + b);
92+
}
93+
94+
// Overloaded method with double and int as parameters
95+
public void display(double a, int b) {
96+
System.out.println("Double: " + a + ", Integer: " + b);
97+
}
98+
99+
public static void main(String[] args) {
100+
CodesWithPankaj obj = new CodesWithPankaj();
101+
obj.display(10, 20.5); // Calls first method
102+
obj.display(20.5, 10); // Calls second method
50103
}
51104
}
52105
```
53106

54-
In this example, `Circle` and `Rectangle` are subclasses of `Shape` and override the `draw()` method to provide their own implementations. Polymorphism is demonstrated when we create objects of the subclasses and call the `draw()` method on them. The appropriate overridden method is invoked based on the actual object type.
107+
**Explanation**:
108+
- In this example, the `display` method is overloaded by changing the order of parameters.
109+
- The first method takes an `int` followed by a `double`, and the second method takes a `double` followed by an `int`.
110+
- The Java compiler differentiates between the two methods based on the order in which the parameters are passed.
111+
112+
---
113+
114+
#### Rules and Considerations for Method Overloading
115+
116+
1. **Cannot overload by return type alone**: The return type of methods does not play a role in method overloading. If two methods have the same name and parameters but different return types, it will result in a compile-time error.
117+
118+
2. **Method Name and Parameters Must Be Different**: The method name should be the same, but the parameters must be different in some way (either by number, type, or order).
119+
120+
3. **Automatic Type Promotion**: Java may promote one data type to another during method calls (e.g., int to float). This can sometimes lead to ambiguity if not handled carefully.
121+
122+
4. **Performance Considerations**: Overloading methods provide flexibility but could also affect performance if not designed properly, as the JVM needs to determine the correct method at runtime.
123+
124+
---
125+
126+
#### Practical Use Cases of Method Overloading
127+
128+
- **Constructor Overloading**: Often used in constructors to provide different ways to instantiate an object.
129+
- **Mathematical Operations**: Overloading methods like `add`, `subtract`, or `multiply` for handling various data types (e.g., `int`, `float`, `double`).
130+
- **Input Handling**: Different methods for handling various types of inputs (e.g., accepting strings, integers, or files).
131+
132+
---
133+
134+
#### Conclusion
135+
136+
Method overloading is a powerful feature in Java that enhances code readability and reusability by allowing multiple methods with the same name but different parameters. It is widely used in real-world applications to handle various types of input and provide multiple ways to perform similar operations.
137+
138+
In your coding journey, make sure to use method overloading when appropriate to keep your code clean, efficient, and user-friendly.
139+
140+
---
141+
142+
**Example Practice Questions**:
143+
144+
1. Write a program in Java to overload a method that calculates the area of different shapes (circle, rectangle, and triangle).
145+
2. Create a class with overloaded methods for calculating the sum of two, three, and four numbers. Test the class with sample data.
146+
3. Explain why Java does not allow method overloading based solely on the return type of a method.
147+
148+
---
149+
150+
**References**:
151+
- For more examples and tutorials, visit www.codeswithpankaj.com
152+

0 commit comments

Comments
 (0)