I am a recent immigrant from c++ to Java. I have this problem:
I have an array of objects (not yet initialized using the new operator), that I need to pass to a member function of another class for storage. In c++ I would have made a pointer to the array, so as soon as I initialized the pointers in the array, the other class would automatically get it. How do I do this is Java?