繁体   English   中英

Castor映射数组

[英]Castor Mapping Arrays

我有一个具有构造函数的类:

public ContEmpirical(double xs[], double fs[]) {
    Check.check(xs.length == fs.length + 1 && fs.length > 0,
            "Empirical distribution array mismatch");
    this.xs = new double[xs.length];
    this.xs = xs;
    this.cs = new double[xs.length];
    double fTotal = 0.0;
    for (int i = 0; i < fs.length; i++)
        fTotal += fs[i];
    cs[0] = 0;
    for (int i = 0; i < fs.length; i++)
        cs[i + 1] = cs[i] + fs[i] / fTotal;
}

属性:

private double xs[], cs[];
    private double fs[]; // this attribute i added to make castors life easier since it always wants to map constructor arg to class attribute.

我拥有的映射文件是:

<class name="tools.ContEmpirical">
        <description xmlns="">
            Mapping for class tools.ContEmpirical
        </description>

        <map-to xml="ContEmpirical"/>

        <field name="xs" type="double" collection="array" set-method="%1" get-method="getXs" required="true">
          <bind-xml node="attribute"/>
        </field>

        <field name="fs" type="double" collection="array" set-method="%2" get-method="getFs" required="true">
          <bind-xml node="attribute"/>
        </field></class>

但是,当我尝试封送ContEmpirical的实例时,我得到了以下XML:

<ContEmpirical xs="0.2 0.3 0.4 0.8"/>

当我真的应该得到这样的东西时:

<ContEmpirical xs="0.2 0.3 0.4 0.8" fs="0.2 0.3 0.4 0.8"/>

映射中缺少我吗?

您可以发布ContEmpirical类吗? 您是否正在将fs数组初始化为字段级别的内容?

更新:我一定错过了一些东西。 您说过您“期望”输出xml中的fs。 但是该类是否具有名为fs的属性? 从您发布的构造函数代码中,永远不会在内部分配fs(尽管有一个名为fs的参数用于计算cs)。

因此,实际上,您的对象只有xs和cs变量,并且在XML中,如果您声明cs的映射,则应该得到cs。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM