Subash Chandran posted: "// 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); } } "
|

No comments:
Post a Comment
Note: Only a member of this blog may post a comment.