Max size for a passed parameter?
Hello.
I've recently started coding seriously in Java, and I'm developing a little application that gathers information from the user, stores it in a vector, and then stores that vector in a vector of vectors.
This Vector<Vector> gets passed to a few methods and it occurred to me that this vector could get very large if the user keeps inputting data, which prompts my post.
Is there a maximum size for a passed parameter? Will there be exceptions or errors if the vector gets too large?
Thanks in advance.