7

我想将一个类定义为具有 traitContextItem的 java 类的扩展。PredicateConfidence

Confidence 是一个简单的 trait,它只是在其扩展的任何内容中添加一个置信度字段。

trait Confidence{
  def confidence:Double
}

ContextItem通过简单地说明来定义我的班级:

class ContextItem extends Predicate with Confidence{}

但是试图编译这个会产生......

com/slug/berds/Berds.scala:11: error: overloaded method constructor Predicate with     alternatives:
  (java.lang.String,<repeated...>[java.lang.String])com.Predicate <and>
  (java.lang.String,<repeated...>[com.Symbol])com.Predicate <and>
  (java.lang.String,java.util.ArrayList[com.Symbol])com.Predicate <and>
  (com.Predicate)com.Predicate <and>
  (com.Term)com.Predicate <and>
  (java.lang.String)com.Predicate
 cannot be applied to ()
class ContextItem(pred:Predicate) extends Predicate with Confidence{
             ^

这似乎是一个微不足道的例子,所以出了什么问题?

谓词(不是我的)看起来像:

/** Representation of predicate logical form. */
public class Predicate extends Term implements Serializable {
    public Predicate(String n) {
        super(n);
    }
    public Predicate(Term t) {
        super(t);
    }
    public Predicate(Predicate p) {
        super((Term)p);
    }
    public Predicate(String n, ArrayList<Symbol> a) {
        super(n, a);
    }
    public Predicate(String n, Symbol... a) {
        super(n, a);
    }
    public Predicate(String n, String... a) {
        super(n, a);
    }
    @Override
    public Predicate copy() {
        return new Predicate(this);
    }
}

Predicate 及其任何祖先都没有实现置信度。

4

1 回答 1

6

我认为它列出了 的所有构造函数Predicate,并通知您您没有使用它们中的任何一个。默认是使用无参数构造函数,这里不存在。例如,调用(String)超级构造函数的语法是

class ContextItem extends Predicate("something") with Confidence

或者

class ContextItem(str: String) extends Predicate(str) with Confidence

另外,目前 yourdef confidence是一个抽象方法,所以在你给它一个定义之前不会编译。如果您打算让特征添加一个可写confidence字段,那么这就是您想要的:

var confidence: Double = 0.0
于 2013-04-17T21:00:00.480 回答