Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
C++
C++14: Papers
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
Reply to thread
Message
[QUOTE="Stefan Ram, post: 5087871"] file »Interface.java«: public interface Interface { void f(); } file »Implementation.java«: public class Implementation implements Interface { public void f(){} } In a large project, you definitely want to have a doumentation for each interface and each abstract method. C++'s answer was to totally ignore the problem, while Java has JavaDoc, so a real Java interface file looks more like: Interface.java /** This interface ... */ public interface Interface { /** This method ... */ void f(); } The Java standard library even defines standard interfaces. [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
C++
C++14: Papers
Top