我想知道,如果我创建一个返回数组的方法。我如何才能在主要或其他方法中访问该数组中的特定点?
例如:
public static int[] deleteElement(int[]thing, int target){
int[]newThing;
newThing=thing;
int y=0;
for (int i=0; i<thing.length; i++){
if (thing[i]==target){
newThing[y]=thing[i+1];}
y++;
}
return newThing;
}
public static int test(int[]someArray){
//here how can i access newThing[i]?
}
谢谢一堆