我有一个带
的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()的垃圾值
答案 0 :(得分:1)
您可以通过迭代索引获取数组值,例如:
double[] array = { 1, 2, 3 };
for (int i = 0; i < array.length; i++) {
System.out.print(array[i]);
}