We're a community of 1076K IT Pros here for help, advice, solutions, professional growth and fun. Join us!
1,075,549 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Start New Discussion Reply to this Discussion

count button clicks

I want to count the number of times the button is clicked using GUI.

I did this code:

  private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) 
  {                                         
    int clicked = 0;
    clicked++;
    System.out.println(clicked);
  }    

But it showing the output "1", each time I click the button.

I want every time I click the button to show me the count.

ex: If I click the button two times it should give me output of "2".

3
Contributors
5
Replies
1 Hour
Discussion Span
2 Months Ago
Last Updated
22
Views
sofien.fkih
Light Poster
31 posts since Jul 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

You declare int clicked inside the action performed method, so you get a new clicked variable (initialised to 0) every time the method is called.
If you move the declaration to just outside the method then it will be an instance variable that keeps its value between calls to jButton1ActionPerformed

JamesCherrill
... trying to help
Moderator
8,496 posts since Apr 2008
Reputation Points: 2,583
Solved Threads: 1,454
Skill Endorsements: 29

declaring clicked global will solve ur problem

IIM
Practically a Master Poster
636 posts since Jun 2011
Reputation Points: 127
Solved Threads: 136
Skill Endorsements: 7

No it won't. This is Java. Declaring clicked global will simply create a compiler error. Please don't confuse Java beginners by using non-Java terminology and giving advice that they can't follow, and wouldn't work even if they did.

ps: DaniWeb Member Rules include: "Do post in full-sentence English". Members with English as their second (or third...) language won't uinderstand "ur".

JamesCherrill
... trying to help
Moderator
8,496 posts since Apr 2008
Reputation Points: 2,583
Solved Threads: 1,454
Skill Endorsements: 29

@jAMES - I MEAN DECLARING CHECKED AS INSTANCE VARIABLE,i.e.,Defined at Instace/Object Level
If CHECKED is common to all objects,then use static modifier.

IIM
Practically a Master Poster
636 posts since Jun 2011
Reputation Points: 127
Solved Threads: 136
Skill Endorsements: 7

Yes, I understood that was what you meant. (The same solution as detailed in my first post!). I commented because you cannot assume that a beginner will understand your use of the non-Java word "global", that's all.
J

JamesCherrill
... trying to help
Moderator
8,496 posts since Apr 2008
Reputation Points: 2,583
Solved Threads: 1,454
Skill Endorsements: 29

Post: Markdown Syntax: Formatting Help
 
You
View similar articles that have also been tagged:
 
© 2013 DaniWeb® LLC
Page rendered in 0.0986 seconds using 2.8MB