How to call java from c#?

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

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

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.