eclipse 公开申明里,查父类,看不到方法里的具体操作,怎么办?

发布于 2021-12-01 13:04:33 字数 1680 浏览 873 评论 1

集合框架里面添加元素add,   先查ADD里面的具体方法,但是跟进后,只看到黑字,怎么才能看到具体操作呢?

public interface Set<E> extends Collection<E> {

下面的全是注释

本来方法下面应该有具体操作 return map.put(e,present)==null;


    /**
     * Adds the specified object to this set. The set is not modified if it
     * already contains the object.
     *
     * @param object
     *            the object to add.
     * @return {@code true} if this set is modified, {@code false} otherwise.
     * @throws UnsupportedOperationException
     *             when adding to this set is not supported.
     * @throws ClassCastException
     *             when the class of the object is inappropriate for this set.
     * @throws IllegalArgumentException
     *             when the object cannot be added to this set.
     */

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼眸里的那抹悲凉 2021-12-02 22:41:11

下载源码

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文