Search:

Type: Posts; User: Norm

Search: Search took 0.10 seconds.

  1. Replies
    3
    Views
    1,044

    Re: Calling another method on my code

    You can't call two methods at the same time. You have to call them one at a time.

    Can you explain what you are trying to do?
  2. Replies
    3
    Views
    1,044

    Re: Calling another method on my code

    The syntax to call a static method is to use the class name dot method name:
    double val = Math.abs(12.3); // Call the static method abs in the Math class
Results 1 to 2 of 2