J
John
Gast
Code:
class X
{
int y;
X() {};
}
....
X[] x = new X[2];
....
x[0] = new X();
x[1] = new X();
Das kann doch nicht funktionieren, oder etwa doch?
Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
class X
{
int y;
X() {};
}
....
X[] x = new X[2];
....
x[0] = new X();
x[1] = new X();