写过的一个函数中的部分代码:
List<Integer> list = new ArrayList<Integer>();
for (int p = 0; p < k4+1; p++) {
if (T[p + 1] > 0) {
int theaT=T[p+1]-T[p];
list.add(theaT);
}
}
int[] a = new int[list.size()];
for(int i=0;i<list.size();i++)
{
a[i] = list.get(i);
}
return a;