Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Basically I need a different string created each time a loop repeats. I need a new string each time the loop repeats so I can store a whole bunch of different names and recall them as needed.

Thanks for any help I can get, I know its a little vague sorry bout that.

share|improve this question
Try making it less vague next time. This site can help: How To Ask Questions The Smart Way – Hovercraft Full Of Eels Jun 12 '11 at 23:44

4 Answers

Use the java Collections framework:

List<String> strings = new ArrayList<String>();
while(someCondition()) {
    // Call add() as much as you like - the List will grow as needed
    strings.add("some new string"); // create whatever String you like
}

Now variable strings contains a bunch of String objects.

Later, you can iterate over the strings to do something with them:

for(String string : strings) {
    System.out.println(string); // or whatever
}
share|improve this answer

Create an array or a list outside the loop and add a new string every time.

share|improve this answer

I guess you'll have to store your strings in a Map, or similar.

share|improve this answer

What you need is an array.

An array is like a list of variables. So you can make a new array called mystring, and then mystring[0], mystring[1], mystring[2] are all different variables. In your loop you can use your index value i to do mystring[i] and get a new variable for each time the loop repeats.

http://download.oracle.com/javase/tutorial/java/nutsandbolts/arrays.html

share|improve this answer
1  
arrays don't automatically grow - use a List – Bohemian Jun 12 '11 at 23:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.