Skip to content

Commit 22bd1d6

Browse files
author
Ram swaroop
committed
minor changes
1 parent ad3f4ee commit 22bd1d6

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

_posts/2015-05-29-overriding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Overriding
55

66
Reimplementing the inherited method from the parent class in the child class is called __Overriding in Java__.
77

8-
There are certain __rules for overriding__, in the below code we will point out all of the rules:
8+
There are certain __rules for overriding__, the below code points out all of the rules:
99

1010
{% highlight java linenos %}
1111

_posts/2015-06-02-overloading.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
layout: post
3+
title: Overloading
4+
---
5+
6+
Reusing the same method name in the same class or subclass but with different arguments
7+
(and optionally, a different return type) is called __Method Overloading in Java__.
8+
9+
There are certain __rules for overloading__, the below code points out all of the rules:
10+
11+

0 commit comments

Comments
 (0)