我的注释无法正常工作,计算结果有误

时间:2019-01-20 14:49:32

标签: java reflection annotations

我有一个模型模型,其中的值标记为BIND批注。注释应允许:

  • 在执行计算之前将值分配给模型的输入变量

  • 下载模型中计算出的变量值(计算完成后)。

我从文件中读取数据,并通过反射将其值传输到模型类中的变量。 我的问题是注释没有任何改变。我的计算结果有误。

import java.lang.annotation.*;

@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Bind {

}  

public class Model1 {
@Bind private int LL;
@Bind private  double[] twKI;
@Bind private  double[] twKS;
@Bind private  double[] twINW;
@Bind private  double[] twEKS;
@Bind private  double[] twIMP;
@Bind private double[] KI;
@Bind private double[] KS;
@Bind private double[] INW;
@Bind private double[] EKS;
@Bind private double[] IMP;
@Bind private double[] PKB;

public Model1() {}

public void run() {
 PKB = new double[LL];
 PKB[0] = KI[0] + KS[0] + INW[0] + EKS[0] - IMP[0];
 for (int t=1; t < LL; t++) {
  KI[t] = twKI[t]* KI[t-1];
  KS[t] = twKS[t]* KS[t-1];
  INW[t] = twINW[t]* INW[t-1];
  EKS[t] = twEKS[t]* EKS[t-1];
  IMP[t] = twIMP[t]* IMP[t-1];
  PKB[t] = KI[t] + KS[t] + INW[t] + EKS[t] - IMP[t];
 }
}
}

因此它在mod类中为另一个类赋予了价值

Field fieldLL = class1.getDeclaredField("LL");
        fieldLL.setAccessible(true);
        fieldLL.setInt(modelName, LL);

        Field fieldtkWI  = class1.getDeclaredField("twKI");
        fieldtkWI.setAccessible(true);
        fieldtkWI.set(modelName, twKI);

        Field fieldtwKS = class1.getDeclaredField("twKS");
        fieldtwKS.setAccessible(true);
        fieldtwKS.set(modelName, twKS); 

并调用run方法

Method method = class1.getDeclaredMethod("run");
        method.invoke(modelName);

            Field fieldPKB = class1.getDeclaredField("PKB");
            fieldPKB.setAccessible(true);
            PKB = (double[]) fieldPKB.get(modelName);

例如,我代码中的pf pkb值是:

PKB     1714273.4   1893950.2719999999  2115659.0986     
2362962.8638815996    2638886.923654132

应该是

 PKB    1714273.4   1815516.032 1944672.4554000003   
 2083203.6166496002     2231733.528866293  

只有第一个值正确

0 个答案:

没有答案