XxHash32 构造函数

定义

重载

XxHash32()

初始化 XxHash32 类的新实例。

XxHash32(Int32)

使用指定的种子初始化 类的新实例 XxHash32

XxHash32()

Source:
XxHash32.cs
Source:
XxHash32.cs
Source:
XxHash32.cs

初始化 XxHash32 类的新实例。

public:
 XxHash32();
public XxHash32 ();
Public Sub New ()

注解

XxHash32 算法支持可选的种子值。 使用此构造函数创建的实例使用默认种子零。

适用于

XxHash32(Int32)

Source:
XxHash32.cs
Source:
XxHash32.cs
Source:
XxHash32.cs

使用指定的种子初始化 类的新实例 XxHash32

public:
 XxHash32(int seed);
public XxHash32 (int seed);
new System.IO.Hashing.XxHash32 : int -> System.IO.Hashing.XxHash32
Public Sub New (seed As Integer)

参数

seed
Int32

用于从此实例进行计算的哈希种子值。

适用于