Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有与 Objective-C 等效的 Java 函数float powf(float, float)?
float powf(float, float)
谢谢你。
有两种选择
double d = Math.pow(a, b);
或添加到 java 文件的开头
import static java.lang.Math.pow;
并使用
double d = pow(a, b);
顺便说一句,您的 IDE 通常可以进行此重构。