我有一个名为“ConstituentSet”的类。它有一种方法,即“getNucleusInConstSet()”,其输出将来自“Proposition”类。新类“命题”有另一种方法,即“getProperty()”。我想知道“ConstituentSet”类中我的“命题核”的属性是什么。但我不知道我该怎么做。我写如下,但它不起作用。 (ConstituentSet.getNucleusInConstSet()).getProperty())
public class ConstituentSet{
// Constructor
private Proposition nucleusInConstSet;
public Proposition getNucleusInConstSet() {
return nucleusInConstSet;
}
}
public class Proposition{
//Constructor
private Property property;
public Property getProperty() {
return this.type;
}
}