Os:windows7 x64
Jdk:jdk-8u131-windows-x64
Ide:eclipse Oxygen Release (4.7.0)
Code:
Interface interface persontrain{//as long as the function declaration, do not specifically implement public abstract void Writebook ();} Interface Javaertrain{public abstract void Repaircomputer ();} Draw line class implements an interface abstract class person implements persontrain{}//concrete class implements multiple interfaces class Javaer extends person implements Persontrain, javaertrain{public void Writebook () {System.out.println ("write book");} public void Repaircomputer () {System.out.println ("repaired a Computer");}} Class Demo {public static void main (string[] agrs) {Javaer j = new Javaer (); J.writebook (); J.repaircomputer ();}}
Results:
Java is good, worth learning.
Learning resources: Itcast Video Library. If you have public resources, can share to me, with your resources to learn also can.
Blog post is to watch the video, into thinking written. It's good that the teacher speaks well. Blog bad, is to give the most bitter not serious.
If you think the blog can be improved, leave a message.
JavaSE8 Simple example of implementing multiple interfaces based on a specific class