gpt4 book ai didi

java - Java 中的不可变对象(immutable对象)和访问数据

转载 作者:搜寻专家 更新时间:2023-10-31 08:05:03 24 4
gpt4 key购买 nike

我已经用 Java 实现了一个类,它在内部存储了一个 List。我希望类(class)是不可变的。但是,我需要对在类的上下文中没有意义的内部数据执行操作。因此,我有另一个定义一组算法的类。这是一个简化的示例:

Wrapper.java

import java.util.List;
import java.util.Iterator;

public class Wrapper implements Iterable<Double>
{
private final List<Double> list;

public Wrapper(List<Double> list)
{
this.list = list;
}

public Iterator<Double> iterator()
{
return getList().iterator();
}

public List<Double> data() { return getList(); }
}

算法.java

import java.util.Iterator;
import java.util.Collection;

public class Algorithm
{
public static double sum(Collection<Double> collection)
{
double sum = 0.0;
Iterator<Double> iterator = collection.iterator();

// Throws NoSuchElementException if the Collection contains no elements
do
{
sum += iterator.next();
}
while(iterator.hasNext());

return sum;
}
}

现在,我的问题是,尽管我的类本应是不可变的,但是否有一种可靠的方法可以防止有人修改我的内部数据?虽然我提供了一个用于只读目的的 data() 方法,但没有什么可以阻止某人通过 clear() 等方法修改数据删除()。现在,我意识到我可以通过迭代器专门提供对我的数据的访问。但是,有人告诉我传递Collection 是典型的做法。其次,如果我的算法需要多次传递数据,我将不得不提供多个迭代器,这看起来像是一个滑坡。

好的,希望有一个简单的解决方案可以解决我的顾虑。我刚刚回到 Java,在处理 C++ 中的 const 之前从未考虑过这些事情。提前致谢!

哦!我刚刚想到的还有一件事。我实际上无法返回内部 List 的副本。 List 通常包含数十万个元素。

最佳答案

您可以使用 Collections.unmodifiableList并修改数据方法。

public List<Double> data() { return Collections.unmodifiableList(getList()); }

来自javadoc:

Returns an unmodifiable view of the specified list. This method allows modules to provide users with "read-only" access to internal lists. Query operations on the returned list "read through" to the specified list, and attempts to modify the returned list, whether direct or via its iterator, result in an UnsupportedOperationException.

关于java - Java 中的不可变对象(immutable对象)和访问数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/979097/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com