Java中的语法 - 在标记中使用类

时间:2013-11-25 15:42:31

标签: java selenium

我正在学习java和selenium,有时我可以看到标签中包含的类名。我无法理解这意味着什么。

 Wait<WebDriver> wait = new FluentWait<WebDriver>(driver)
   .withTimeout(30, SECONDS)
   .pollingEvery(5, SECONDS)
   .ignoring(NoSuchElementException.class);


WebElement foo = wait.until(new Function<WebDriver, WebElement>() {
 public WebElement apply(WebDriver driver) {
   return driver.findElement(By.id("foo"));
 }

有人可以解释一下吗?

1 个答案:

答案 0 :(得分:0)

它被称为泛型。查看这篇维基百科文章:

http://en.wikipedia.org/wiki/Generics_in_Java