1

我有一个 JPA 实体

package com.vivo.entities;
public class Lv_work_item {
  double[] aRBal = new double[10];
  public double[] getaRBal() {
    return aRBal;
  }
  public void setaRBal(double[] aRBal) {
   this.aRBal = aRBal;
  }
}

我必须在 JAVA 类中使用 double 类型设置这个 aRBal 值。我如何设置它的值并从中获取值?

在我的 JAVA 类中,我编写的代码像...

Lv_work_item lvwork = new Lv_work_item();
double[] aRBa = new double[10]; 
    for(int i=0;i<=10;i++){
      aRBa[i]=0.0;
   lvwork.setaRBal(aRBa);
   System.out.println(lvwork.getaRBal().toString()+""+aRBa[i]);
}

但是我如何设置值和值来自 lvwork.getaRBal()

4

1 回答 1

1

您可以通过迭代索引获取数组值,例如:

    double[] array = { 1, 2, 3 };
    for (int i = 0; i < array.length; i++) {
        System.out.print(array[i]);
    }
于 2013-02-07T08:37:00.773 回答