From e0b308acf1e1977328d8871f7978f2879845ce4d Mon Sep 17 00:00:00 2001 From: Benjamin Winterberg Date: Fri, 13 Nov 2015 07:46:41 +0100 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1fa1967..a7755cb 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,9 @@ This article was originally posted on [my blog](http://winterbe.com/posts/2014/0 ## Default Methods for Interfaces -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: +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). + +Here is our first example: ```java interface Formula { -- GitLab