A question about an array
so i have a string array of size 10. and im taking user inputs to store then in that string array and im using BufferedReader to get input from user and when a user enters more than 10 messages it should give a message saying that memory full....any thoughts on my code.....
Code :
String[] messages = new String[10];
int i;
for (i = 1; i <=messages.length;i++)
{
messages[i] = clientSentence;
outToClient.writeObject(messages[i]);
}
Re: A question about an array
The only thing I can see wrong for sure is that Java's arrays start with index 0, not 1.
Code :
for(i = 0; i < messages.length; i++)
Re: A question about an array
Quote:
Originally Posted by
helloworld922
The only thing I can see wrong for sure is that Java's arrays start with index 0, not 1.
Code :
for(i = 0; i < messages.length; i++)
yah it was origionally started from 0 but i was playing around with it. yah i know there is nothing wrong with code but it still doest work. anyways i ll try it again tommorw and see where i can get....