mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-14 17:25:38 +07:00
11 lines
167 B
Java
11 lines
167 B
Java
public class Client {
|
|
I[] array;
|
|
|
|
{
|
|
array = new I[0];
|
|
for(int i = 0; i < array.length; i++){
|
|
array[i] = new C();
|
|
}
|
|
}
|
|
}
|