I would like to use different variables to access the same data.
i.e. I have an array:
float[] vector = new float[3];
I would like each value in the array to also have its individual label i.e.:
vector[0] == pitch;
vector[1] == yaw;
vector[2] == roll;
I would like to use vector[] & pitch/yaw/roll interchangeably. When I pass all three values between two functions I want to refer to the array, however when I access them individually I would like to refer to them as pitch yaw and roll.
Is this possible in Java?
You can't do this with a primitive
float
and an array of typefloat[]
. Java does not support variables that are pointers or references to primitives.However, there are a few workarounds.
First, you could make your own mutable reference type holding a float value.
But it would probably be better to wrap your array in an object, and use methods to get the members by meaningful name, rather than variables.
This gets you close -- although you can't just say
pitch
, you could sayo.pitch()
.