简体   繁体   中英

Objective-C powf() equivalent function in Java

Is there a function Java equivalent to Objective-C float powf(float, float) ?

Thank you.

There is two options

double d = Math.pow(a, b);

or add to the start of the java file

import static java.lang.Math.pow;

and use

double d = pow(a, b);

BTW Your IDE can usually do this refactoring.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM