给出以下结构类:
public class Section extends IterableWidgetTemplate<Item>{
private List<WebElement> items1;
// other non iterable methods
private int indexOf(final Item item) {
int i = Iterables.indexOf(this, new Predicate<Item>() {
. . .
});
return i;
}
其中Iterables
是一个Guava com.google.common.collect.Iterables
,根据其文档,它包含对Iterable
类型的对象进行操作的静态实用程序方法。
现在,在上面描述的类中,this
作为可迭代传递给private int indexOf()
方法。
问题:
this
对象中迭代什么?我是否正确地假设Iterables
类将使用传递给它的对象中唯一可用的可迭代方法?所以在这种情况下,我们在List<WebElement>
对象中有this
变量。Section
类有多个可迭代变量,会发生什么?其中哪一个将用于迭代?答案 0 :(得分:2)
Iterables.indexOf()
将第一个参数作为实现Iterable
接口的对象。因此,Iterables.indexOf()
迭代的内容由作为参数传入的对象定义,在您的示例中为Section
类。但它没有使用变量 - 它将调用Iterable.iterator()
对象上的Section
方法。不可能有多个这样的方法,因此不存在对Iterables.indexOf()
将迭代的内容产生混淆的情况。