请参阅以下函数定义:
class Entity[T](
val pi : T => String,
val si : T => Map[Symbol,String],
val tag : ClassTag[T],
val address: T=>AnyRef
) {
// some other definitions here ...
def filterEntity(attribute: DiscreteAttribute[T], value: String ):Unit={
// nothing
}
}
编译器给出了以下错误:
/Users/i-danielk/ideaProjects/saul/src/main/scala/edu/illinois/cs/cogcomp/lfs/data_model/entity/Entity.scala:67: type arguments [T] do not conform to class DiscreteAttribute's type parameter bounds [T <: AnyRef]
[error] def filterEntity(attribute: DiscreteAttribute[T], value: String ):Entity[T]={
以下是DiscreteAttribute
:
case class DiscreteAttribute[T <: AnyRef](
val name : String,
val mapping: T => String,
val range : Option[List[String]]
)(implicit val tag : ClassTag[T]) extends TypedAttribute[T,String]{
....
}
知道我哪里错了吗?
更新:以下内容也不起作用:
def filterEntity(attribute: DiscreteAttribute[T <: AnyRef], value: String ):Entity[T]={
这是错误:
/Users/i-danielk/ideaProjects/saul/src/main/scala/edu/illinois/cs/cogcomp/lfs/data_model/entity/Entity.scala:67: ']' expected but '<:' found.
[error] def filterEntity(attribute: DiscreteAttribute[T <: AnyRef], value: String ):Entity[T]={
Update2:以下是它的使用方法:
val filteredConstituent= EdisonDataModel.constituents.filterEntity(EdisonDataModel.Eview,"Token")
其中
object EdisonDataModel extends DataModel {
val Eview = discreteAttributeOf[Constituent]('CviewName){
x=>x.getViewName
}
和
def discreteAttributeOf[T <: AnyRef](name : Symbol)(f : T => String)(implicit tag : ClassTag[T]) : DiscreteAttribute[T] = {
new DiscreteAttribute[T](name.toString,f,None)
}
更新3: 以下函数定义也存在相同的错误:
def filterEntity(attribute: DiscreteAttribute[T], value: String ):Unit={
// empty
}
答案 0 :(得分:4)
您需要为影响filterEntity方法的T类型定义限制。
e.g。 class Something[T <: AnyRef]
以便它与DiscreteAttribute
在您的情况下,您希望将Entity
声明为:class Entity[T <: AnyRef]
。