VBMath 类

定义

VbMath 模块包含用于执行算术操作的过程。

public ref class VBMath sealed
[Microsoft.VisualBasic.CompilerServices.StandardModule]
public sealed class VBMath
[<Microsoft.VisualBasic.CompilerServices.StandardModule>]
type VBMath = class
Public Module VBMath
继承
VBMath
属性

示例

此示例使用 Rnd 函数生成 1 到 6 范围内的随机整数值。

' Initialize the random-number generator.
Randomize()
' Generate random value between 1 and 6.
Dim value As Integer = CInt(Int((6 * Rnd()) + 1))

注解

此模块支持用于生成随机数的 Visual Basic 语言关键字和运行时库成员。

方法

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
Randomize()

初始化随机数生成器。

Randomize(Double)

初始化随机数生成器。

Rnd()

返回一个 Single 类型的随机数。

Rnd(Single)

返回一个 Single 类型的随机数。

ToString()

返回表示当前对象的字符串。

(继承自 Object)

适用于

另请参阅