B/c the moment it reads the field Tmp::radii it is still null! ![]()
How about instantiating the array right way inside class Tmp? ![]()
class Tmp {
static final int RADII = 3;
final float[] radii = new float[RADII];
}
B/c the moment it reads the field Tmp::radii it is still null! ![]()
How about instantiating the array right way inside class Tmp? ![]()
class Tmp {
static final int RADII = 3;
final float[] radii = new float[RADII];
}