有一个方法具有此签名:
public List<? extends TagNode> getElementListByName(String findName, boolean isRecursive) {
return getElementList(new TagNodeNameCondition(findName), isRecursive);
}
在Scala中,我使用了这样的方法:
val anchorNodes = bodyNode.getElementListByName("a", true)
并编写了一个函数来过滤掉所有带有此签名的锚标签:
def buildArticleLinksList(anchorTags: List[TagNode]): List[TagNode] = {
@tailrec def buildArticlesList(articleLinksList: List[TagNode], anchorTags: List[TagNode]): List[TagNode] = anchorTags match {
case Nil => articleLinksList
case anchorTag :: tail if(anchorTag.getAttributeByName("href").contains(relativeCheckStr)) => buildArticlesList(articleLinksList:::List(anchorTag), tail)
}
buildArticlesList(List(), anchorTags)
}
但我得到了一个错误,上面写着:
Type mismatch, expected: List[TagNode], actual: List[_ <: TagNode]
有人能为我解释一种方法来声明我的函数吗?它允许我实际传入的类型,这有点令人困惑。
将Java List转换为Scala的List,它已经成功了。
编辑
虽然我应该包括导入和代码,但一旦我更仔细地阅读了错误,它就很容易修复了。
为了修复它,我基本上导入了JavaConverter,如下所示:
import scala.collection.JavaConverters._
然后我将Java列表转换为Scala列表,如下所示:
val anchorNodes = bodyNode.getElementListByName("a", true).asScala.toList
这里的问题是,asScala
将Java列表映射到一个缓冲区,这是Scala的等效缓冲区,所以我们可以将其转换为Scala列表。