Similar Posts

Subscribe
Notify of
5 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
LisamagPferde04
1 year ago

Show the code around.
With me it works and it comes out 9.07228894255853E149

priesterlein
1 year ago

Probably because you get this exception in another place and by the way: there is, as far as I know, no pow in Java, but pow.

So look GENAU go, WO this exception occurs.

sonderdings
1 year ago
Reply to  priesterlein

There is no pow in java, but pow.

Can I confirm, I just tried.

It may, however, be natural that “Math” is not the standard-made class, but something else.

priesterlein
1 year ago
Reply to  sonderdings

Yes, maybe he created this class himself and a pow in it 🙂

sonderdings
1 year ago

I just tried this out of interest:

import java.lang.reflect.Method;

public class MyClass {
    public Method Pow;
    
    public void holePow() throws Exception {
        this.Pow = Math.class.getDeclaredMethod(
            "pow", double.class, double.class);
    }
    
    public static void main(String args[]) throws Exception {
      MyClass hallo = new MyClass();
      hallo.holePow();
      // System.out.println(hallo.Pow(123, 321));
    }
}

The outgoing line at the end does not give the syntax, so you would have to work with invoke(…).