Java中的不可修改列表

Java中的不可修改列表,第1张

Java中的不可修改列表

如果绝对必须这样做,请尝试遵循所创建列表 中java.util.List 指定的约定。

您的代码看起来像

public class UnmodifiableArrayList<E>  extends ArrayList<E> {    public UnmodifiableArrayList(Collection<? extends E> c) {        super(c);    }    public boolean add(int index) {        return false;//Returning false as the element cannot be added     }    public boolean addAll(Collection<? extends E> c) {        return false;//Returning false as the element cannot be added     }    public E remove(int index) {        return null;//Returning null as the element cannot be removed    }}

在同一行上添加您需要的任何其他方法。只需 确保覆盖了所有可能在您的代码中用于修改的构造函数和方法, 以确保该列表不可修改。

使用Collections API是更干净,更好的方法,因此仅在使用Collections.UnmodifiableList无法满足您的需要时才使用此方法。

请记住,这将是调试时的噩梦,因此请尽可能多地记录日志。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5500192.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-13
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存