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

how to add string in program when executed 1- first executed then add "_X" 2- second time executed than add "_X_X" third time executed than add "_X_X_X" and so on

share|improve this question
homework question?. – Gursel Koca Jan 10 '11 at 9:38
What do you mean by "programm when executed"? Do you mean some method you call while your programm is running, or do you what to save the current string somewhere (disk, database, etc.) and read it when the programm starts? – Tim Büthe Jan 10 '11 at 9:38
(Folks - in English, the is one "m" in program.) – Stephen C Jan 10 '11 at 10:25

4 Answers

If you mean a method, you can do it like this:

public String appendSomething(String current){
    return current + "_X";
}
share|improve this answer

Hard to tell if you want to show if the application has been execute n times or if your running n instances of the same application in parallel.

Anyway, you'll have to use an external ressource (a file) to store the actual counter value.

If you want to show, how many times an application has been started, simply read the value from the file on every application start, increment the counter and write it back. Keep the incremented value in memory and assemble the display String.

If you want to show the nth running instance, again use the technique described above to get and store the actual value and decrement the value in that file just before an instance is being closed.

Note, that there are at least two problems with this approach, which may be a blocker in production code:

  1. The counter may not be decremented if the application terminates unexpected. You'll need exactly one exit point for your application and thus serious exception handling
  2. Concurrent modification of the file may result in wrong counters. If two instances are created at exactly the same time, they may both receive the same counter value. Irrelevant, if the instances are startet "by hand".
share|improve this answer

You can read about Serialization here.

http://www.javabeginner.com/uncategorized/java-serialization

I'm giving you only a hook, you must do your homework by yourself.

share|improve this answer

I don't exactly understand what you want to do. If you don't need to make it persistent then you could use a static variable in your class, like:

class TestClass {
  private static int count = 0;

  public void doExecute()
  {
    this.count++;
  }

  public static int getCount()
  {
    return count;
  }
}
share|improve this answer

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.