From 7ae7aa433d48c4c348c3d56bdc24f12aeeb35e3c Mon Sep 17 00:00:00 2001 From: Jonathan Lam Date: Sun, 18 Nov 2018 15:23:11 -0800 Subject: [PATCH] Added Oracle Java Docs for interfaces (#21602) * Added Oracle Java Docs for interfaces * Fixed formatting --- guide/english/java/interfaces/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/guide/english/java/interfaces/index.md b/guide/english/java/interfaces/index.md index 728beb3c13..bf55cff9ae 100644 --- a/guide/english/java/interfaces/index.md +++ b/guide/english/java/interfaces/index.md @@ -262,3 +262,6 @@ public class SmartPhone implements MusicPlayer { Whoops, did I forget `next()` ? See, since it was a `default` method, I didn't had to provide an implementation at all. (Won't work for JDK < 8) So, now you have a good grasp of Interfaces! Go learn about Abstract Classes to know how Java gives you yet another way to define contracts. + +#### More Information +- [Oracle Java Docs - Interfaces](https://docs.oracle.com/javase/specs/jls/se7/html/jls-9.html)