// Assume we have the simple interface: interface Appendable { 	void append(string content); } // We can implement it like that: class SimplePrinter implements Appendable {  	public void append(string content) {    		System.out.println(content);      } } // ... and maybe like that: class FileWriter implements Appendable {  	public void append(string content) {    		// Appends content into a file      } } // Both classes are Appendable. 0 how to implement a interface in java

Read more of this post