Functions.Pow 方法 | |
将第一个参数提升到第二个参数指定的数值幂。
命名空间:
XSharp.RT
程序集:
XSharp.RT (在 XSharp.RT.dll 中) 版本:2.22 GA
语法 FUNCTION Pow(
nBase AS USUAL,
nExponent AS USUAL
) AS FLOAT
public static __Float Pow(
__Usual nBase,
__Usual nExponent
)
查看代码参数
- nBase
- 类型:__Usual
底数。 - nExponent
- 类型:__Usual
要将底数提升到的幂。
返回值
类型:
__Float备注 示例
此示例使用 Pow() 将 2 提升到 3 次方:
参见