Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的问题:是否可以向类或方法添加一些信息(描述),当我在代码中使用此类或方法时,可以从 Eclipse 中看到。如何?
以及下图中的黑框,我想在我自己的方法旁边有自己的描述。
谢谢
是否可以向类或方法添加一些信息(描述)
=> 是的 可以注释块(Javadoc 风格)。
例如:
/** This method is used for bla bla bla... @author Paresh Mayani @Date 16th April **/ public void display() { ..... ..... }
在您实施时,上述评论将以黄色注释弹出。