Java - how to call a double from an action event?
-
I'm trying to call the double values accel and vel in this private class: private class calculationListener implements ActionListener{ public void actionPerformed(ActionEvent event){ String transfer = (input1.getText()); double accel = Double.parseDouble(transfer); String transfer2 = (input2.getText()); double vel = Double.parseDouble(transfer2); System.out.println("Height: " + (int)c.maxHeight() + " meters"); } } how do i call the values for accel and vel in other methods or classes? ive tried a.event.accel but that doesn't work. (a being calculationListener: a calculationListener = new calculationListener();) thanks!
-
Answer:
Those are method variables. So they are only available in the method you create them. If you want to access them throughout your whole class, you need to declare them in your class, not inside any method.
Kopen at Yahoo! Answers Visit the source
Related Q & A:
- How to call a popup from a link inside another popup?Best solution by stackoverflow.com
- How to call a function with parameter in a bash script?Best solution by tldp.org
- How much does a double bass weigh?Best solution by talkbass.com
- How much is a double dated liberty silver dollar worth?Best solution by Yahoo! Answers
- How to do a double screen?Best solution by eHow old
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.