eclipse 公开申明里,查父类,看不到方法里的具体操作,怎么办?
集合框架里面添加元素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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下载源码