Hi!
I have one small question. Is that possible?
public class test1 {
public static void main (String[] args){
test2 client = new test2();
test2[] call = new test2[1000];
int x =2;
call[1].add1(x);
}
}
public class test2 {
void add1(int x) {
x = x+1;
}
}
Sorry for my bad English.