I have a question about linked lists in java. I saw an interesting approach of getting arguments from the commandline into a java program, via String[] args. The very interesting part on this was that all Strings were added to a LinkedList which later is iterated in order to interpret all options.
So the question is, what happens if you excessivly use this LinkedList with a very very very large ammount of data? Are there any ways you could break it up to create a buffer overflow, or is it just working until there is no more memory allocatable?
greetings,
vlad