Fuck this is complicated (2/2)

Seeing how java does things
This commit is contained in:
Tristan B. Kildaire 2021-06-06 22:46:06 +02:00
parent dc01256e60
commit fa953bc809
6 changed files with 18 additions and 0 deletions

BIN
rando/a.class Normal file

Binary file not shown.

5
rando/a.java Normal file
View File

@ -0,0 +1,5 @@
public class a
{
static b bInstance;
static int j = b.k++;
}

BIN
rando/b.class Normal file

Binary file not shown.

5
rando/b.java Normal file
View File

@ -0,0 +1,5 @@
public class b
{
static a aInstance;
static int k = a.j;
}

BIN
rando/c.class Normal file

Binary file not shown.

8
rando/c.java Normal file
View File

@ -0,0 +1,8 @@
public class c
{
public static void main(String[] args)
{
a l;
a.bInstance = new b();
}
}