有一个带有这个签名的方法:
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]
有人可以为我解释一种方法来声明我的函数,该函数允许我实际传入的类型,这有点令人困惑。