Skip to content

Commit e0b308a

Browse files
committed
Update README.md
1 parent 3a2d67f commit e0b308a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ This article was originally posted on [my blog](http://winterbe.com/posts/2014/0
4545

4646
## Default Methods for Interfaces
4747

48-
Java 8 enables us to add non-abstract method implementations to interfaces by utilizing the `default` keyword. This feature is also known as **Extension Methods**. Here is our first example:
48+
Java 8 enables us to add non-abstract method implementations to interfaces by utilizing the `default` keyword. This feature is also known as [virtual extension methods](http://stackoverflow.com/a/24102730).
49+
50+
Here is our first example:
4951

5052
```java
5153
interfaceFormula {

0 commit comments

Comments
 (0)
close