Collection接口中的可选方法

时间:2013-06-29 10:52:56

标签: java collections methods optional

“{3}}上下文中”可选“是什么意思?

public interface Collection<E> extends Iterable<E> 
{
 // Basic operations
   int size();
   boolean isEmpty();
   boolean contains(Object element);
 // optional

最后一行评论“//可选”:这是什么意思?我尝试通过实现它来实现一个集合public class Col-implementation implements Collection,它根本不是可选的。

我需要实现所有方法,甚至是被称为“可选”的方法。 我显然没有通过“可选”获得他们的意思。对此有何见解?

2 个答案:

答案 0 :(得分:7)

您必须提供实现,但该实现可以抛出UnsupportedOperationException

答案 1 :(得分:4)

在这种情况下optional意味着并非所有Collection<E>都可以在实施中做一些有用的事情。虽然提供实现确实是强制性的,但throw an exception to indicate that the method is not implemented可以。