我有一个名为的 Java 抽象类ImmutableEntity
和几个包含名为@DBTable
. 我正在尝试使用尾递归 Scala 方法在类层次结构中搜索注释:
def getDbTableForClass[A <: ImmutableEntity](cls: Class[A]): String = {
@tailrec
def getDbTableAnnotation[B >: A](cls: Class[B]): DBTable = {
if (cls == null) {
null
} else {
val dbTable = cls.getAnnotation(classOf[DBTable])
if (dbTable != null) {
dbTable
} else {
getDbTableAnnotation(cls.getSuperclass)
}
}
}
val dbTable = getDbTableAnnotation(cls)
if (dbTable == null) {
throw new
IllegalArgumentException("No DBTable annotation on class " + cls.getName)
} else {
val value = dbTable.value
if (value != null) {
value
} else {
throw new
IllegalArgumentException("No DBTable.value annotation on class " + cls.getName)
}
}
}
当我编译这段代码时,我收到错误消息:“无法优化 @tailrec 注释方法:它是用不同类型的参数递归调用的”。我的内在方法有什么问题?
谢谢。