Originally posted by Sachindra Pratap:
// ...
r_v[column] = new riu_voicecall_thread(column);
r_v[column].setPriority(8);
r_v[column].start();
r_t[column]=new riu_thread(create_RIU_cnt,column);
r_t[column].setPriority(8);
r_t[column].start();
r_c[column]= new riu_thred_connection(create_RIU_cnt,column);
r_c[column].start();
// ...
The query how much reliable is the block inside the function is
if function is called in very very less time interval.
And threads inside the function are also static.[/QB]
public interface xyz{
int a = 10;
}
cat []c=new cat[]; // this won't work, you have to specify size of the instantiated array, e.g. new cat[5];
my=my[0];
//can't assign a 1-D array to a 2-D array.
my=my[0][0];
//can't assign a nonarray object to a 2-D array reference.
my[1]=my[1][2];
//can't assign a nonarray object to a 1-D array reference.
my[0][1]=c;
//can't assign an array object to a nonarray reference my[0][1] can only refer to a cat object[/QB]