Yeah, you're right -- the newer way seems to use maybe the ArrayList class from the Collections Framework, which supports dynamic arrays.&nbsp; It seems that Vector is described as a Legacy class -- nice, feeling old now :)<br>
<br>
<div><span class="gmail_quote">On 12/6/05, <b class="gmail_sendername">David Pashley</b> &lt;<a href="mailto:david@davidpashley.com">david@davidpashley.com</a>&gt; wrote:</span>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">On Dec 06, 2005 at 14:13, Stephen Elliott praised the llamas by saying:<br>&gt; Hi there,<br>&gt;<br>&gt;<br>
&gt; I have a quick Java question I'd like to run past any Java Gurus out there.<br>&gt; I am writing a multi-thread chat server programming using RMI and want to<br>&gt; store all the<br>&gt; messages users send to each other in an array. The purpose being, when
<br>&gt; someone new joins the chat room they will receive all previous messages<br>&gt; users have sent to one another. So far all I can do is store a predefined<br>&gt; amount e.g. 100. I have achieved this by creating a string array with 100
<br>&gt; elements. What I would like to do is be able to store an infinite number of<br>&gt; messages but is it possible to create an array with an infinite number of<br>&gt; elements.<br>&gt;<br>&gt; I hope what I have said makes sense, this is as you've probably guessed an
<br>&gt; assignment we have been given at University. I have asked my lecturer and he<br>&gt; says this is beyond the scope of the course but to me it seems foolhardy to<br>&gt; write a program that will crash once 100 messages have been relayed.
<br>&gt;<br>&gt; Many Thanks<br>&gt; Steve...<br><br>The answer is to use a container. Perhaps a List. You can create a List<br>and then .append() items onto it.<br><br>--<br>David Pashley<br><a href="mailto:david@davidpashley.com">
david@davidpashley.com</a><br>Nihil curo de ista tua stulta superstitione.<br><br>_______________________________________________<br>Beds mailing list<br><a href="mailto:Beds@mailman.lug.org.uk">Beds@mailman.lug.org.uk</a>
<br><a href="http://mailman.lug.org.uk/mailman/listinfo/beds">http://mailman.lug.org.uk/mailman/listinfo/beds</a><br></blockquote></div><br>